├── LICENSE ├── README.md ├── add_features └── .gitkeep ├── dataset └── .gitkeep ├── img └── solution.png ├── input └── .gitkeep ├── source ├── 00_gen_input.r ├── 00_name_feature.r ├── 01_nn │ ├── 1_data.lua │ ├── 2_split.lua │ ├── 3_model.lua │ ├── 4_train.lua │ ├── 5_test.lua │ ├── 6_valid.lua │ ├── doall.lua │ ├── gen_dataset.r │ └── lib │ │ └── auc.lua ├── 01_nn_averaging.r ├── 02_xgb │ └── 02_xgb.r ├── 02_xgb_averaging.r ├── 03_knn │ ├── knn_cos.lua │ ├── knn_euclid.lua │ ├── lib │ │ ├── fill_na.lua │ │ ├── log_transform.lua │ │ ├── normalize_col.lua │ │ ├── normalize_row.lua │ │ └── orderedPairs.lua │ ├── read_data.lua │ └── save_feature.lua ├── 03_xgb_with_knn │ └── 03_xgb_with_knn.r ├── 03_xgb_with_knn_averaging.r ├── 04_all_averaging.r └── 04_all_averaging_and_postprocessing.r └── submission └── .gitkeep /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshi-k/kaggle-santander-customer-satisfaction/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshi-k/kaggle-santander-customer-satisfaction/HEAD/README.md -------------------------------------------------------------------------------- /add_features/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dataset/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /img/solution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshi-k/kaggle-santander-customer-satisfaction/HEAD/img/solution.png -------------------------------------------------------------------------------- /input/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/00_gen_input.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshi-k/kaggle-santander-customer-satisfaction/HEAD/source/00_gen_input.r -------------------------------------------------------------------------------- /source/00_name_feature.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshi-k/kaggle-santander-customer-satisfaction/HEAD/source/00_name_feature.r -------------------------------------------------------------------------------- /source/01_nn/1_data.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshi-k/kaggle-santander-customer-satisfaction/HEAD/source/01_nn/1_data.lua -------------------------------------------------------------------------------- /source/01_nn/2_split.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshi-k/kaggle-santander-customer-satisfaction/HEAD/source/01_nn/2_split.lua -------------------------------------------------------------------------------- /source/01_nn/3_model.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshi-k/kaggle-santander-customer-satisfaction/HEAD/source/01_nn/3_model.lua -------------------------------------------------------------------------------- /source/01_nn/4_train.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshi-k/kaggle-santander-customer-satisfaction/HEAD/source/01_nn/4_train.lua -------------------------------------------------------------------------------- /source/01_nn/5_test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshi-k/kaggle-santander-customer-satisfaction/HEAD/source/01_nn/5_test.lua -------------------------------------------------------------------------------- /source/01_nn/6_valid.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshi-k/kaggle-santander-customer-satisfaction/HEAD/source/01_nn/6_valid.lua -------------------------------------------------------------------------------- /source/01_nn/doall.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshi-k/kaggle-santander-customer-satisfaction/HEAD/source/01_nn/doall.lua -------------------------------------------------------------------------------- /source/01_nn/gen_dataset.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshi-k/kaggle-santander-customer-satisfaction/HEAD/source/01_nn/gen_dataset.r -------------------------------------------------------------------------------- /source/01_nn/lib/auc.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshi-k/kaggle-santander-customer-satisfaction/HEAD/source/01_nn/lib/auc.lua -------------------------------------------------------------------------------- /source/01_nn_averaging.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshi-k/kaggle-santander-customer-satisfaction/HEAD/source/01_nn_averaging.r -------------------------------------------------------------------------------- /source/02_xgb/02_xgb.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshi-k/kaggle-santander-customer-satisfaction/HEAD/source/02_xgb/02_xgb.r -------------------------------------------------------------------------------- /source/02_xgb_averaging.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshi-k/kaggle-santander-customer-satisfaction/HEAD/source/02_xgb_averaging.r -------------------------------------------------------------------------------- /source/03_knn/knn_cos.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshi-k/kaggle-santander-customer-satisfaction/HEAD/source/03_knn/knn_cos.lua -------------------------------------------------------------------------------- /source/03_knn/knn_euclid.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshi-k/kaggle-santander-customer-satisfaction/HEAD/source/03_knn/knn_euclid.lua -------------------------------------------------------------------------------- /source/03_knn/lib/fill_na.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshi-k/kaggle-santander-customer-satisfaction/HEAD/source/03_knn/lib/fill_na.lua -------------------------------------------------------------------------------- /source/03_knn/lib/log_transform.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshi-k/kaggle-santander-customer-satisfaction/HEAD/source/03_knn/lib/log_transform.lua -------------------------------------------------------------------------------- /source/03_knn/lib/normalize_col.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshi-k/kaggle-santander-customer-satisfaction/HEAD/source/03_knn/lib/normalize_col.lua -------------------------------------------------------------------------------- /source/03_knn/lib/normalize_row.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshi-k/kaggle-santander-customer-satisfaction/HEAD/source/03_knn/lib/normalize_row.lua -------------------------------------------------------------------------------- /source/03_knn/lib/orderedPairs.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshi-k/kaggle-santander-customer-satisfaction/HEAD/source/03_knn/lib/orderedPairs.lua -------------------------------------------------------------------------------- /source/03_knn/read_data.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshi-k/kaggle-santander-customer-satisfaction/HEAD/source/03_knn/read_data.lua -------------------------------------------------------------------------------- /source/03_knn/save_feature.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshi-k/kaggle-santander-customer-satisfaction/HEAD/source/03_knn/save_feature.lua -------------------------------------------------------------------------------- /source/03_xgb_with_knn/03_xgb_with_knn.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshi-k/kaggle-santander-customer-satisfaction/HEAD/source/03_xgb_with_knn/03_xgb_with_knn.r -------------------------------------------------------------------------------- /source/03_xgb_with_knn_averaging.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshi-k/kaggle-santander-customer-satisfaction/HEAD/source/03_xgb_with_knn_averaging.r -------------------------------------------------------------------------------- /source/04_all_averaging.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshi-k/kaggle-santander-customer-satisfaction/HEAD/source/04_all_averaging.r -------------------------------------------------------------------------------- /source/04_all_averaging_and_postprocessing.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshi-k/kaggle-santander-customer-satisfaction/HEAD/source/04_all_averaging_and_postprocessing.r -------------------------------------------------------------------------------- /submission/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------