├── Images ├── ponpare.png ├── ponpare_small.png ├── prudential.png └── statefarm.png ├── Ponpare ├── .ipynb_checkpoints │ └── ponpare_lightfm-checkpoint.ipynb ├── Data │ ├── Data_japanese │ │ ├── README.md │ │ ├── coupon_detail_test.csv.zip │ │ ├── coupon_detail_train.csv.zip │ │ ├── coupon_detail_train.csv.zip.1 │ │ ├── coupon_list_test.csv.zip │ │ ├── coupon_list_test.csv.zip.1 │ │ ├── coupon_list_train.csv.zip │ │ └── documentation.zip │ ├── Data_translated │ │ ├── README.md │ │ └── xgb_model │ │ │ └── README.md │ ├── README.md │ └── Validation │ │ ├── README.md │ │ ├── week51 │ │ ├── README.md │ │ └── xgb_model │ │ │ └── README.md │ │ └── week52 │ │ ├── README.md │ │ └── xgb_model │ │ └── README.md ├── Ponpare_submission │ ├── README.md │ ├── blending.py │ ├── ponpare_lightfm.py │ ├── similarity_distance.py │ └── supervised_learning.py ├── Ponpare_utilities │ ├── README.md │ ├── configure_competition.py │ ├── cookies.txt │ ├── create_validation.py │ ├── data │ ├── download_data.py │ ├── mean_average_precision.py │ ├── prefecture.txt │ ├── preprocessing_submission.py │ ├── preprocessing_validation.py │ ├── run_checks.py │ └── translate.py ├── Ponpare_validation │ ├── README.md │ ├── optimise_blending.py │ ├── optimise_similarity.py │ ├── ponpare_lightfm.py │ ├── similarity_distance.py │ └── supervised_learning.py ├── Ponpare_visual │ ├── README.md │ └── visualisation.py ├── README.md ├── Submissions │ └── README.md └── ponpare_lightfm.ipynb ├── Prudential ├── Data │ └── Raw │ │ └── README.md ├── README.md ├── TSNE │ ├── apply_tsne.R │ └── prepare_tsne_data.py ├── class_utilities_lv1.py ├── class_utilities_lv2.py ├── get_bayes_feat.py ├── preprocessing_lv1.py ├── preprocessing_lv2.py ├── train_level1.py └── train_level2.py ├── README.md └── StateFarm ├── README.md ├── data ├── external │ ├── README.md │ └── resnet_mean_values.npy ├── processed │ └── README.md └── raw │ └── README.md ├── models └── README.md ├── reports ├── README.md └── submissions │ └── README.md └── src ├── README.md ├── data └── make_dataset.py ├── model ├── main_keras.py ├── main_lasagne.py ├── merge_submission.py ├── models.py └── train.py └── utils ├── batch_utils.py └── general_utils.py /Images/ponpare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdeboissiere/Kaggle/HEAD/Images/ponpare.png -------------------------------------------------------------------------------- /Images/ponpare_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdeboissiere/Kaggle/HEAD/Images/ponpare_small.png -------------------------------------------------------------------------------- /Images/prudential.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdeboissiere/Kaggle/HEAD/Images/prudential.png -------------------------------------------------------------------------------- /Images/statefarm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdeboissiere/Kaggle/HEAD/Images/statefarm.png -------------------------------------------------------------------------------- /Ponpare/.ipynb_checkpoints/ponpare_lightfm-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdeboissiere/Kaggle/HEAD/Ponpare/.ipynb_checkpoints/ponpare_lightfm-checkpoint.ipynb -------------------------------------------------------------------------------- /Ponpare/Data/Data_japanese/README.md: -------------------------------------------------------------------------------- 1 | ## Store the data downloaded from Kaggle (in Japanese) 2 | -------------------------------------------------------------------------------- /Ponpare/Data/Data_japanese/coupon_detail_test.csv.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdeboissiere/Kaggle/HEAD/Ponpare/Data/Data_japanese/coupon_detail_test.csv.zip -------------------------------------------------------------------------------- /Ponpare/Data/Data_japanese/coupon_detail_train.csv.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdeboissiere/Kaggle/HEAD/Ponpare/Data/Data_japanese/coupon_detail_train.csv.zip -------------------------------------------------------------------------------- /Ponpare/Data/Data_japanese/coupon_detail_train.csv.zip.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdeboissiere/Kaggle/HEAD/Ponpare/Data/Data_japanese/coupon_detail_train.csv.zip.1 -------------------------------------------------------------------------------- /Ponpare/Data/Data_japanese/coupon_list_test.csv.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdeboissiere/Kaggle/HEAD/Ponpare/Data/Data_japanese/coupon_list_test.csv.zip -------------------------------------------------------------------------------- /Ponpare/Data/Data_japanese/coupon_list_test.csv.zip.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdeboissiere/Kaggle/HEAD/Ponpare/Data/Data_japanese/coupon_list_test.csv.zip.1 -------------------------------------------------------------------------------- /Ponpare/Data/Data_japanese/coupon_list_train.csv.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdeboissiere/Kaggle/HEAD/Ponpare/Data/Data_japanese/coupon_list_train.csv.zip -------------------------------------------------------------------------------- /Ponpare/Data/Data_japanese/documentation.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdeboissiere/Kaggle/HEAD/Ponpare/Data/Data_japanese/documentation.zip -------------------------------------------------------------------------------- /Ponpare/Data/Data_translated/README.md: -------------------------------------------------------------------------------- 1 | ## Store the data translated to English 2 | -------------------------------------------------------------------------------- /Ponpare/Data/Data_translated/xgb_model/README.md: -------------------------------------------------------------------------------- 1 | ## Store xgboost models 2 | -------------------------------------------------------------------------------- /Ponpare/Data/README.md: -------------------------------------------------------------------------------- 1 | ## Store the data 2 | -------------------------------------------------------------------------------- /Ponpare/Data/Validation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdeboissiere/Kaggle/HEAD/Ponpare/Data/Validation/README.md -------------------------------------------------------------------------------- /Ponpare/Data/Validation/week51/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdeboissiere/Kaggle/HEAD/Ponpare/Data/Validation/week51/README.md -------------------------------------------------------------------------------- /Ponpare/Data/Validation/week51/xgb_model/README.md: -------------------------------------------------------------------------------- 1 | ## Store xgboost models -------------------------------------------------------------------------------- /Ponpare/Data/Validation/week52/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdeboissiere/Kaggle/HEAD/Ponpare/Data/Validation/week52/README.md -------------------------------------------------------------------------------- /Ponpare/Data/Validation/week52/xgb_model/README.md: -------------------------------------------------------------------------------- 1 | ## Store xgboost models -------------------------------------------------------------------------------- /Ponpare/Ponpare_submission/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdeboissiere/Kaggle/HEAD/Ponpare/Ponpare_submission/README.md -------------------------------------------------------------------------------- /Ponpare/Ponpare_submission/blending.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdeboissiere/Kaggle/HEAD/Ponpare/Ponpare_submission/blending.py -------------------------------------------------------------------------------- /Ponpare/Ponpare_submission/ponpare_lightfm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdeboissiere/Kaggle/HEAD/Ponpare/Ponpare_submission/ponpare_lightfm.py -------------------------------------------------------------------------------- /Ponpare/Ponpare_submission/similarity_distance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdeboissiere/Kaggle/HEAD/Ponpare/Ponpare_submission/similarity_distance.py -------------------------------------------------------------------------------- /Ponpare/Ponpare_submission/supervised_learning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdeboissiere/Kaggle/HEAD/Ponpare/Ponpare_submission/supervised_learning.py -------------------------------------------------------------------------------- /Ponpare/Ponpare_utilities/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdeboissiere/Kaggle/HEAD/Ponpare/Ponpare_utilities/README.md -------------------------------------------------------------------------------- /Ponpare/Ponpare_utilities/configure_competition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdeboissiere/Kaggle/HEAD/Ponpare/Ponpare_utilities/configure_competition.py -------------------------------------------------------------------------------- /Ponpare/Ponpare_utilities/cookies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdeboissiere/Kaggle/HEAD/Ponpare/Ponpare_utilities/cookies.txt -------------------------------------------------------------------------------- /Ponpare/Ponpare_utilities/create_validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdeboissiere/Kaggle/HEAD/Ponpare/Ponpare_utilities/create_validation.py -------------------------------------------------------------------------------- /Ponpare/Ponpare_utilities/data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdeboissiere/Kaggle/HEAD/Ponpare/Ponpare_utilities/data -------------------------------------------------------------------------------- /Ponpare/Ponpare_utilities/download_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdeboissiere/Kaggle/HEAD/Ponpare/Ponpare_utilities/download_data.py -------------------------------------------------------------------------------- /Ponpare/Ponpare_utilities/mean_average_precision.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdeboissiere/Kaggle/HEAD/Ponpare/Ponpare_utilities/mean_average_precision.py -------------------------------------------------------------------------------- /Ponpare/Ponpare_utilities/prefecture.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdeboissiere/Kaggle/HEAD/Ponpare/Ponpare_utilities/prefecture.txt -------------------------------------------------------------------------------- /Ponpare/Ponpare_utilities/preprocessing_submission.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdeboissiere/Kaggle/HEAD/Ponpare/Ponpare_utilities/preprocessing_submission.py -------------------------------------------------------------------------------- /Ponpare/Ponpare_utilities/preprocessing_validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdeboissiere/Kaggle/HEAD/Ponpare/Ponpare_utilities/preprocessing_validation.py -------------------------------------------------------------------------------- /Ponpare/Ponpare_utilities/run_checks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdeboissiere/Kaggle/HEAD/Ponpare/Ponpare_utilities/run_checks.py -------------------------------------------------------------------------------- /Ponpare/Ponpare_utilities/translate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdeboissiere/Kaggle/HEAD/Ponpare/Ponpare_utilities/translate.py -------------------------------------------------------------------------------- /Ponpare/Ponpare_validation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdeboissiere/Kaggle/HEAD/Ponpare/Ponpare_validation/README.md -------------------------------------------------------------------------------- /Ponpare/Ponpare_validation/optimise_blending.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdeboissiere/Kaggle/HEAD/Ponpare/Ponpare_validation/optimise_blending.py -------------------------------------------------------------------------------- /Ponpare/Ponpare_validation/optimise_similarity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdeboissiere/Kaggle/HEAD/Ponpare/Ponpare_validation/optimise_similarity.py -------------------------------------------------------------------------------- /Ponpare/Ponpare_validation/ponpare_lightfm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdeboissiere/Kaggle/HEAD/Ponpare/Ponpare_validation/ponpare_lightfm.py -------------------------------------------------------------------------------- /Ponpare/Ponpare_validation/similarity_distance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdeboissiere/Kaggle/HEAD/Ponpare/Ponpare_validation/similarity_distance.py -------------------------------------------------------------------------------- /Ponpare/Ponpare_validation/supervised_learning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdeboissiere/Kaggle/HEAD/Ponpare/Ponpare_validation/supervised_learning.py -------------------------------------------------------------------------------- /Ponpare/Ponpare_visual/README.md: -------------------------------------------------------------------------------- 1 | Ponpare visualisation scripts 2 | -------------------------------------------------------------------------------- /Ponpare/Ponpare_visual/visualisation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdeboissiere/Kaggle/HEAD/Ponpare/Ponpare_visual/visualisation.py -------------------------------------------------------------------------------- /Ponpare/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdeboissiere/Kaggle/HEAD/Ponpare/README.md -------------------------------------------------------------------------------- /Ponpare/Submissions/README.md: -------------------------------------------------------------------------------- 1 | #Directory to hold submission files 2 | -------------------------------------------------------------------------------- /Ponpare/ponpare_lightfm.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdeboissiere/Kaggle/HEAD/Ponpare/ponpare_lightfm.ipynb -------------------------------------------------------------------------------- /Prudential/Data/Raw/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdeboissiere/Kaggle/HEAD/Prudential/Data/Raw/README.md -------------------------------------------------------------------------------- /Prudential/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdeboissiere/Kaggle/HEAD/Prudential/README.md -------------------------------------------------------------------------------- /Prudential/TSNE/apply_tsne.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdeboissiere/Kaggle/HEAD/Prudential/TSNE/apply_tsne.R -------------------------------------------------------------------------------- /Prudential/TSNE/prepare_tsne_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdeboissiere/Kaggle/HEAD/Prudential/TSNE/prepare_tsne_data.py -------------------------------------------------------------------------------- /Prudential/class_utilities_lv1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdeboissiere/Kaggle/HEAD/Prudential/class_utilities_lv1.py -------------------------------------------------------------------------------- /Prudential/class_utilities_lv2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdeboissiere/Kaggle/HEAD/Prudential/class_utilities_lv2.py -------------------------------------------------------------------------------- /Prudential/get_bayes_feat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdeboissiere/Kaggle/HEAD/Prudential/get_bayes_feat.py -------------------------------------------------------------------------------- /Prudential/preprocessing_lv1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdeboissiere/Kaggle/HEAD/Prudential/preprocessing_lv1.py -------------------------------------------------------------------------------- /Prudential/preprocessing_lv2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdeboissiere/Kaggle/HEAD/Prudential/preprocessing_lv2.py -------------------------------------------------------------------------------- /Prudential/train_level1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdeboissiere/Kaggle/HEAD/Prudential/train_level1.py -------------------------------------------------------------------------------- /Prudential/train_level2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdeboissiere/Kaggle/HEAD/Prudential/train_level2.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdeboissiere/Kaggle/HEAD/README.md -------------------------------------------------------------------------------- /StateFarm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdeboissiere/Kaggle/HEAD/StateFarm/README.md -------------------------------------------------------------------------------- /StateFarm/data/external/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdeboissiere/Kaggle/HEAD/StateFarm/data/external/README.md -------------------------------------------------------------------------------- /StateFarm/data/external/resnet_mean_values.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdeboissiere/Kaggle/HEAD/StateFarm/data/external/resnet_mean_values.npy -------------------------------------------------------------------------------- /StateFarm/data/processed/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdeboissiere/Kaggle/HEAD/StateFarm/data/processed/README.md -------------------------------------------------------------------------------- /StateFarm/data/raw/README.md: -------------------------------------------------------------------------------- 1 | Directory where raw, immutable data files are stored -------------------------------------------------------------------------------- /StateFarm/models/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdeboissiere/Kaggle/HEAD/StateFarm/models/README.md -------------------------------------------------------------------------------- /StateFarm/reports/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdeboissiere/Kaggle/HEAD/StateFarm/reports/README.md -------------------------------------------------------------------------------- /StateFarm/reports/submissions/README.md: -------------------------------------------------------------------------------- 1 | Directory where Kaggle submissions are stored -------------------------------------------------------------------------------- /StateFarm/src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdeboissiere/Kaggle/HEAD/StateFarm/src/README.md -------------------------------------------------------------------------------- /StateFarm/src/data/make_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdeboissiere/Kaggle/HEAD/StateFarm/src/data/make_dataset.py -------------------------------------------------------------------------------- /StateFarm/src/model/main_keras.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdeboissiere/Kaggle/HEAD/StateFarm/src/model/main_keras.py -------------------------------------------------------------------------------- /StateFarm/src/model/main_lasagne.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdeboissiere/Kaggle/HEAD/StateFarm/src/model/main_lasagne.py -------------------------------------------------------------------------------- /StateFarm/src/model/merge_submission.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdeboissiere/Kaggle/HEAD/StateFarm/src/model/merge_submission.py -------------------------------------------------------------------------------- /StateFarm/src/model/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdeboissiere/Kaggle/HEAD/StateFarm/src/model/models.py -------------------------------------------------------------------------------- /StateFarm/src/model/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdeboissiere/Kaggle/HEAD/StateFarm/src/model/train.py -------------------------------------------------------------------------------- /StateFarm/src/utils/batch_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdeboissiere/Kaggle/HEAD/StateFarm/src/utils/batch_utils.py -------------------------------------------------------------------------------- /StateFarm/src/utils/general_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdeboissiere/Kaggle/HEAD/StateFarm/src/utils/general_utils.py --------------------------------------------------------------------------------