├── 3rdplace ├── README.md ├── code │ ├── __init__.py │ ├── main.py │ ├── make_data_v3.py │ ├── make_submission.py │ ├── train_predict.py │ └── utils │ │ ├── __init__.py │ │ └── log_utils.py ├── overview.png └── r_code │ ├── 1_make_data_v3.R │ ├── 2_xgboost.R │ └── 3_make_submission.R ├── 8thplace ├── LICENSE ├── README.md ├── clean.py ├── engines.py ├── log.txt ├── main.py ├── run.sh └── utils.py ├── README.md ├── bare_minimum └── code │ └── main.py ├── kweonwooj ├── README.md └── code │ ├── __init__.py │ ├── main.py │ ├── prepare_data.py │ ├── preprocess_data.py │ └── utils │ ├── __init__.py │ └── log_utils.py ├── requirements.txt └── root_input ├── 8thplace.png ├── bare_minimum.png └── kweonwooj.png /3rdplace/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kweonwooj/kaggle_santander_product_recommendation/HEAD/3rdplace/README.md -------------------------------------------------------------------------------- /3rdplace/code/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3rdplace/code/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kweonwooj/kaggle_santander_product_recommendation/HEAD/3rdplace/code/main.py -------------------------------------------------------------------------------- /3rdplace/code/make_data_v3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kweonwooj/kaggle_santander_product_recommendation/HEAD/3rdplace/code/make_data_v3.py -------------------------------------------------------------------------------- /3rdplace/code/make_submission.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kweonwooj/kaggle_santander_product_recommendation/HEAD/3rdplace/code/make_submission.py -------------------------------------------------------------------------------- /3rdplace/code/train_predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kweonwooj/kaggle_santander_product_recommendation/HEAD/3rdplace/code/train_predict.py -------------------------------------------------------------------------------- /3rdplace/code/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3rdplace/code/utils/log_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kweonwooj/kaggle_santander_product_recommendation/HEAD/3rdplace/code/utils/log_utils.py -------------------------------------------------------------------------------- /3rdplace/overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kweonwooj/kaggle_santander_product_recommendation/HEAD/3rdplace/overview.png -------------------------------------------------------------------------------- /3rdplace/r_code/1_make_data_v3.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kweonwooj/kaggle_santander_product_recommendation/HEAD/3rdplace/r_code/1_make_data_v3.R -------------------------------------------------------------------------------- /3rdplace/r_code/2_xgboost.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kweonwooj/kaggle_santander_product_recommendation/HEAD/3rdplace/r_code/2_xgboost.R -------------------------------------------------------------------------------- /3rdplace/r_code/3_make_submission.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kweonwooj/kaggle_santander_product_recommendation/HEAD/3rdplace/r_code/3_make_submission.R -------------------------------------------------------------------------------- /8thplace/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kweonwooj/kaggle_santander_product_recommendation/HEAD/8thplace/LICENSE -------------------------------------------------------------------------------- /8thplace/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kweonwooj/kaggle_santander_product_recommendation/HEAD/8thplace/README.md -------------------------------------------------------------------------------- /8thplace/clean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kweonwooj/kaggle_santander_product_recommendation/HEAD/8thplace/clean.py -------------------------------------------------------------------------------- /8thplace/engines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kweonwooj/kaggle_santander_product_recommendation/HEAD/8thplace/engines.py -------------------------------------------------------------------------------- /8thplace/log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kweonwooj/kaggle_santander_product_recommendation/HEAD/8thplace/log.txt -------------------------------------------------------------------------------- /8thplace/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kweonwooj/kaggle_santander_product_recommendation/HEAD/8thplace/main.py -------------------------------------------------------------------------------- /8thplace/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kweonwooj/kaggle_santander_product_recommendation/HEAD/8thplace/run.sh -------------------------------------------------------------------------------- /8thplace/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kweonwooj/kaggle_santander_product_recommendation/HEAD/8thplace/utils.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kweonwooj/kaggle_santander_product_recommendation/HEAD/README.md -------------------------------------------------------------------------------- /bare_minimum/code/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kweonwooj/kaggle_santander_product_recommendation/HEAD/bare_minimum/code/main.py -------------------------------------------------------------------------------- /kweonwooj/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kweonwooj/kaggle_santander_product_recommendation/HEAD/kweonwooj/README.md -------------------------------------------------------------------------------- /kweonwooj/code/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kweonwooj/code/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kweonwooj/kaggle_santander_product_recommendation/HEAD/kweonwooj/code/main.py -------------------------------------------------------------------------------- /kweonwooj/code/prepare_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kweonwooj/kaggle_santander_product_recommendation/HEAD/kweonwooj/code/prepare_data.py -------------------------------------------------------------------------------- /kweonwooj/code/preprocess_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kweonwooj/kaggle_santander_product_recommendation/HEAD/kweonwooj/code/preprocess_data.py -------------------------------------------------------------------------------- /kweonwooj/code/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kweonwooj/code/utils/log_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kweonwooj/kaggle_santander_product_recommendation/HEAD/kweonwooj/code/utils/log_utils.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kweonwooj/kaggle_santander_product_recommendation/HEAD/requirements.txt -------------------------------------------------------------------------------- /root_input/8thplace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kweonwooj/kaggle_santander_product_recommendation/HEAD/root_input/8thplace.png -------------------------------------------------------------------------------- /root_input/bare_minimum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kweonwooj/kaggle_santander_product_recommendation/HEAD/root_input/bare_minimum.png -------------------------------------------------------------------------------- /root_input/kweonwooj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kweonwooj/kaggle_santander_product_recommendation/HEAD/root_input/kweonwooj.png --------------------------------------------------------------------------------