This is an open solution to the Santander Value Prediction Challenge 😃
Check collection of public projects 🎁, where you can find multiple Kaggle competitions with code, experiments and outputs.
We are building entirely open solution to this competition. Specifically:
- Learning from the process - updates about new ideas, code and experiments is the best way to learn data science. Our activity is especially useful for people who wants to enter the competition, but lack appropriate experience.
- Encourage more Kagglers to start working on this competition.
- Deliver open source solution with no strings attached. Code is available on our GitHub repository 💻. This solution should establish solid benchmark, as well as provide good base for your custom ideas and experiments. We care about clean code 😃
- We are opening our experiments as well: everybody can have live preview on our experiments, parameters, code, etc. Check: Santander-Value-Prediction-Challenge 📈 and screens below.
LightGBM train and validation performance on folds 📊 | LightGBM experiment logged values 📊 |
---|---|
In this open source solution you will find references to the neptune.ml. It is free platform for community Users, which we use daily to keep track of our experiments. Please note that using neptune.ml is not necessary to proceed with this solution. You may run it as plain Python script 😉.
- Check Kaggle discussion for most recent updates and comments.
- Read Wiki pages, where we describe solutions in more detail. Click on the tropical fish to get started 🐠 or pick solution from the table below.
link to code | name | CV | LB | link to the description |
---|---|---|---|---|
solution 1 | honey bee 🐝 | 1.39 | 1.43 | LightGBM and 5fold CV |
solution 2 | beetle 🪲 | 1.60 | 1.77 | LightGBM on binarized dataset |
solution 3 | dromedary camel 🐪 | 1.35 | 1.41 | LightGBM with row aggregations |
solution 4 | whale 🐳 | 1.3416 | 1.41 | LightGBM on dimension reduced dataset |
solution 5 | water buffalo 🐃 | 1.336 | 1.39 | Exploring various dimension reduction techniques |
solution 6 | blowfish 🐡 | 1.333 | 1.38 | bucketing row aggregations |
You can jump start your participation in the competition by using our starter pack. Installation instruction below will guide you through the setup.
- Clone repository and install requirements (check requirements.txt)
- Register to the neptune.ml (if you wish to use it)
- Run experiment:
🔱
neptune run --config neptune_random_search.yaml main.py train_evaluate_predict --pipeline_name SOME_NAME
🐍
python main.py -- train_evaluate_predict --pipeline_name SOME_NAME
- Clone this repository
git clone https://github.com/minerva-ml/open-solution-value-prediction.git
- Install requirements in your Python3 environment
pip3 install -r requirements.txt
- Register to the neptune.ml (if you wish to use it)
- Update data directories in the neptune.yaml configuration file
- Run experiment:
🔱
neptune login
neptune run --config neptune_random_search.yaml main.py train_evaluate_predict --pipeline_name SOME_NAME
🐍
python main.py -- train_evaluate_predict --pipeline_name SOME_NAME
- collect submit from
experiment_directory
specified in the neptune.yaml
You are welcome to contribute your code and ideas to this open solution. To get started:
- Check competition project on GitHub to see what we are working on right now.
- Express your interest in particular task by writing comment in this task, or by creating new one with your fresh idea.
- We will get back to you quickly in order to start working together.
- Check CONTRIBUTING for some more information.
There are several ways to seek help:
- Kaggle discussion is our primary way of communication.
- Read project's Wiki, where we publish descriptions about the code, pipelines and supporting tools such as neptune.ml.
- Submit an issue directly in this repo.