├── .gitignore ├── README.md ├── data ├── final │ └── tmp.txt └── preliminary_contest_data │ └── tmp.txt ├── feature └── 2_get_feat_low_case_split_with_pre.py ├── preprocess ├── 0_user_feat_transform.py └── 1_slice_merge.py ├── run.sh └── train_dl_with_pre ├── 3-train_add_feature_0612.py ├── 4-test_din_xdeepfm_addFeat_0612.py ├── TSAdsDataset.py ├── din_xdeepfm_v2.py └── loss.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/John-Yao/Tencent_Social_Ads2018/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/John-Yao/Tencent_Social_Ads2018/HEAD/README.md -------------------------------------------------------------------------------- /data/final/tmp.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/preliminary_contest_data/tmp.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /feature/2_get_feat_low_case_split_with_pre.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/John-Yao/Tencent_Social_Ads2018/HEAD/feature/2_get_feat_low_case_split_with_pre.py -------------------------------------------------------------------------------- /preprocess/0_user_feat_transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/John-Yao/Tencent_Social_Ads2018/HEAD/preprocess/0_user_feat_transform.py -------------------------------------------------------------------------------- /preprocess/1_slice_merge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/John-Yao/Tencent_Social_Ads2018/HEAD/preprocess/1_slice_merge.py -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/John-Yao/Tencent_Social_Ads2018/HEAD/run.sh -------------------------------------------------------------------------------- /train_dl_with_pre/3-train_add_feature_0612.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/John-Yao/Tencent_Social_Ads2018/HEAD/train_dl_with_pre/3-train_add_feature_0612.py -------------------------------------------------------------------------------- /train_dl_with_pre/4-test_din_xdeepfm_addFeat_0612.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/John-Yao/Tencent_Social_Ads2018/HEAD/train_dl_with_pre/4-test_din_xdeepfm_addFeat_0612.py -------------------------------------------------------------------------------- /train_dl_with_pre/TSAdsDataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/John-Yao/Tencent_Social_Ads2018/HEAD/train_dl_with_pre/TSAdsDataset.py -------------------------------------------------------------------------------- /train_dl_with_pre/din_xdeepfm_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/John-Yao/Tencent_Social_Ads2018/HEAD/train_dl_with_pre/din_xdeepfm_v2.py -------------------------------------------------------------------------------- /train_dl_with_pre/loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/John-Yao/Tencent_Social_Ads2018/HEAD/train_dl_with_pre/loss.py --------------------------------------------------------------------------------