├── README.txt ├── README_CN.md ├── code ├── 1_DataPreprocessing │ ├── 01_Generate_Offline_Dataset_origin.py │ ├── 02_Generate_Model1_Dataset_origin.py │ ├── 03_Create_Model1_Answer.py │ ├── 03_Create_Offline_Answer.py │ ├── 04_TransformDateTime-Copy1.py │ ├── 05_Generate_img_txt_vec.py │ └── ipynb_file.zip ├── 2_Similarity │ ├── 01_itemCF_Mundane_model1.py │ ├── 01_itemCF_Mundane_offline.py │ ├── 01_itemCF_Mundane_online.py │ ├── RA_Wu_model1.py │ ├── RA_Wu_offline.py │ ├── RA_Wu_online.py │ ├── deep_node_model.py │ └── ipynb_file.zip ├── 3_NN │ ├── ItemFeat2.py │ ├── Readme │ ├── config.py │ ├── model2.py │ ├── modules.py │ ├── sampler2.py │ ├── sas_rec.py │ └── util.py ├── 3_Recall │ ├── 01_Recall-Wu-model1.py │ ├── 01_Recall-Wu-offline.py │ ├── 01_Recall-Wu-online.py │ └── ipynb_file.zip ├── 4_RankFeature │ ├── 01_sim_feature_model1.py │ ├── 01_sim_feature_model1_RA_AA.py │ ├── 01_sim_feature_offline.py │ ├── 01_sim_feature_offline_RA_AA.py │ ├── 01_sim_feature_online.py │ ├── 01_sim_feature_online_RA_AA.py │ ├── 02_itemtime_feature_model1.py │ ├── 02_itemtime_feature_offline.py │ ├── 02_itemtime_feature_online.py │ ├── 03_count_feature_model1.py │ ├── 03_count_feature_offline.py │ ├── 03_count_feature_online.py │ ├── 04_NN_feature_model1.py │ ├── 04_NN_feature_offline.py │ ├── 04_NN_feature_online.csv.py │ ├── 05_txt_feature_model1.py │ ├── 05_txt_feature_offline.py │ ├── 05_txt_feature_online.py │ ├── 06_interactive_model1.py │ ├── 06_interactive_offline.py │ ├── 06_interactive_online.py │ ├── 07_count_detail_model1.py │ ├── 07_count_detail_offline.py │ ├── 07_count_detail_online.py │ ├── 08_user_feature_model1.py │ ├── 08_user_feature_offline.py │ ├── 08_user_feature_online.py │ ├── 09_partial_sim_feature_model1.py │ ├── 09_partial_sim_feature_offline.py │ ├── 09_partial_sim_feature_online.py │ ├── 10_emergency_feature_model1.py │ ├── 10_emergency_feature_offline.py │ ├── 10_emergency_feature_online.py │ ├── 10_紧急feature_model1.py │ ├── 10_紧急feature_offline.py │ ├── 10_紧急feature_online.py │ └── 4_RankFeature.zip └── 5_Modeling │ ├── Model_Offline.py │ ├── Model_Online.py │ └── ipynb_file.zip ├── feature_list.csv ├── main.sh ├── project_structure.txt └── requirements.txt /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChuanyuXue/KDDCUP-2020/HEAD/README.txt -------------------------------------------------------------------------------- /README_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChuanyuXue/KDDCUP-2020/HEAD/README_CN.md -------------------------------------------------------------------------------- /code/1_DataPreprocessing/01_Generate_Offline_Dataset_origin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChuanyuXue/KDDCUP-2020/HEAD/code/1_DataPreprocessing/01_Generate_Offline_Dataset_origin.py -------------------------------------------------------------------------------- /code/1_DataPreprocessing/02_Generate_Model1_Dataset_origin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChuanyuXue/KDDCUP-2020/HEAD/code/1_DataPreprocessing/02_Generate_Model1_Dataset_origin.py -------------------------------------------------------------------------------- /code/1_DataPreprocessing/03_Create_Model1_Answer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChuanyuXue/KDDCUP-2020/HEAD/code/1_DataPreprocessing/03_Create_Model1_Answer.py -------------------------------------------------------------------------------- /code/1_DataPreprocessing/03_Create_Offline_Answer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChuanyuXue/KDDCUP-2020/HEAD/code/1_DataPreprocessing/03_Create_Offline_Answer.py -------------------------------------------------------------------------------- /code/1_DataPreprocessing/04_TransformDateTime-Copy1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChuanyuXue/KDDCUP-2020/HEAD/code/1_DataPreprocessing/04_TransformDateTime-Copy1.py -------------------------------------------------------------------------------- /code/1_DataPreprocessing/05_Generate_img_txt_vec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChuanyuXue/KDDCUP-2020/HEAD/code/1_DataPreprocessing/05_Generate_img_txt_vec.py -------------------------------------------------------------------------------- /code/1_DataPreprocessing/ipynb_file.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChuanyuXue/KDDCUP-2020/HEAD/code/1_DataPreprocessing/ipynb_file.zip -------------------------------------------------------------------------------- /code/2_Similarity/01_itemCF_Mundane_model1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChuanyuXue/KDDCUP-2020/HEAD/code/2_Similarity/01_itemCF_Mundane_model1.py -------------------------------------------------------------------------------- /code/2_Similarity/01_itemCF_Mundane_offline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChuanyuXue/KDDCUP-2020/HEAD/code/2_Similarity/01_itemCF_Mundane_offline.py -------------------------------------------------------------------------------- /code/2_Similarity/01_itemCF_Mundane_online.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChuanyuXue/KDDCUP-2020/HEAD/code/2_Similarity/01_itemCF_Mundane_online.py -------------------------------------------------------------------------------- /code/2_Similarity/RA_Wu_model1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChuanyuXue/KDDCUP-2020/HEAD/code/2_Similarity/RA_Wu_model1.py -------------------------------------------------------------------------------- /code/2_Similarity/RA_Wu_offline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChuanyuXue/KDDCUP-2020/HEAD/code/2_Similarity/RA_Wu_offline.py -------------------------------------------------------------------------------- /code/2_Similarity/RA_Wu_online.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChuanyuXue/KDDCUP-2020/HEAD/code/2_Similarity/RA_Wu_online.py -------------------------------------------------------------------------------- /code/2_Similarity/deep_node_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChuanyuXue/KDDCUP-2020/HEAD/code/2_Similarity/deep_node_model.py -------------------------------------------------------------------------------- /code/2_Similarity/ipynb_file.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChuanyuXue/KDDCUP-2020/HEAD/code/2_Similarity/ipynb_file.zip -------------------------------------------------------------------------------- /code/3_NN/ItemFeat2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChuanyuXue/KDDCUP-2020/HEAD/code/3_NN/ItemFeat2.py -------------------------------------------------------------------------------- /code/3_NN/Readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChuanyuXue/KDDCUP-2020/HEAD/code/3_NN/Readme -------------------------------------------------------------------------------- /code/3_NN/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChuanyuXue/KDDCUP-2020/HEAD/code/3_NN/config.py -------------------------------------------------------------------------------- /code/3_NN/model2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChuanyuXue/KDDCUP-2020/HEAD/code/3_NN/model2.py -------------------------------------------------------------------------------- /code/3_NN/modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChuanyuXue/KDDCUP-2020/HEAD/code/3_NN/modules.py -------------------------------------------------------------------------------- /code/3_NN/sampler2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChuanyuXue/KDDCUP-2020/HEAD/code/3_NN/sampler2.py -------------------------------------------------------------------------------- /code/3_NN/sas_rec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChuanyuXue/KDDCUP-2020/HEAD/code/3_NN/sas_rec.py -------------------------------------------------------------------------------- /code/3_NN/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChuanyuXue/KDDCUP-2020/HEAD/code/3_NN/util.py -------------------------------------------------------------------------------- /code/3_Recall/01_Recall-Wu-model1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChuanyuXue/KDDCUP-2020/HEAD/code/3_Recall/01_Recall-Wu-model1.py -------------------------------------------------------------------------------- /code/3_Recall/01_Recall-Wu-offline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChuanyuXue/KDDCUP-2020/HEAD/code/3_Recall/01_Recall-Wu-offline.py -------------------------------------------------------------------------------- /code/3_Recall/01_Recall-Wu-online.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChuanyuXue/KDDCUP-2020/HEAD/code/3_Recall/01_Recall-Wu-online.py -------------------------------------------------------------------------------- /code/3_Recall/ipynb_file.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChuanyuXue/KDDCUP-2020/HEAD/code/3_Recall/ipynb_file.zip -------------------------------------------------------------------------------- /code/4_RankFeature/01_sim_feature_model1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChuanyuXue/KDDCUP-2020/HEAD/code/4_RankFeature/01_sim_feature_model1.py -------------------------------------------------------------------------------- /code/4_RankFeature/01_sim_feature_model1_RA_AA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChuanyuXue/KDDCUP-2020/HEAD/code/4_RankFeature/01_sim_feature_model1_RA_AA.py -------------------------------------------------------------------------------- /code/4_RankFeature/01_sim_feature_offline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChuanyuXue/KDDCUP-2020/HEAD/code/4_RankFeature/01_sim_feature_offline.py -------------------------------------------------------------------------------- /code/4_RankFeature/01_sim_feature_offline_RA_AA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChuanyuXue/KDDCUP-2020/HEAD/code/4_RankFeature/01_sim_feature_offline_RA_AA.py -------------------------------------------------------------------------------- /code/4_RankFeature/01_sim_feature_online.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChuanyuXue/KDDCUP-2020/HEAD/code/4_RankFeature/01_sim_feature_online.py -------------------------------------------------------------------------------- /code/4_RankFeature/01_sim_feature_online_RA_AA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChuanyuXue/KDDCUP-2020/HEAD/code/4_RankFeature/01_sim_feature_online_RA_AA.py -------------------------------------------------------------------------------- /code/4_RankFeature/02_itemtime_feature_model1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChuanyuXue/KDDCUP-2020/HEAD/code/4_RankFeature/02_itemtime_feature_model1.py -------------------------------------------------------------------------------- /code/4_RankFeature/02_itemtime_feature_offline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChuanyuXue/KDDCUP-2020/HEAD/code/4_RankFeature/02_itemtime_feature_offline.py -------------------------------------------------------------------------------- /code/4_RankFeature/02_itemtime_feature_online.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChuanyuXue/KDDCUP-2020/HEAD/code/4_RankFeature/02_itemtime_feature_online.py -------------------------------------------------------------------------------- /code/4_RankFeature/03_count_feature_model1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChuanyuXue/KDDCUP-2020/HEAD/code/4_RankFeature/03_count_feature_model1.py -------------------------------------------------------------------------------- /code/4_RankFeature/03_count_feature_offline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChuanyuXue/KDDCUP-2020/HEAD/code/4_RankFeature/03_count_feature_offline.py -------------------------------------------------------------------------------- /code/4_RankFeature/03_count_feature_online.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChuanyuXue/KDDCUP-2020/HEAD/code/4_RankFeature/03_count_feature_online.py -------------------------------------------------------------------------------- /code/4_RankFeature/04_NN_feature_model1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChuanyuXue/KDDCUP-2020/HEAD/code/4_RankFeature/04_NN_feature_model1.py -------------------------------------------------------------------------------- /code/4_RankFeature/04_NN_feature_offline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChuanyuXue/KDDCUP-2020/HEAD/code/4_RankFeature/04_NN_feature_offline.py -------------------------------------------------------------------------------- /code/4_RankFeature/04_NN_feature_online.csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChuanyuXue/KDDCUP-2020/HEAD/code/4_RankFeature/04_NN_feature_online.csv.py -------------------------------------------------------------------------------- /code/4_RankFeature/05_txt_feature_model1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChuanyuXue/KDDCUP-2020/HEAD/code/4_RankFeature/05_txt_feature_model1.py -------------------------------------------------------------------------------- /code/4_RankFeature/05_txt_feature_offline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChuanyuXue/KDDCUP-2020/HEAD/code/4_RankFeature/05_txt_feature_offline.py -------------------------------------------------------------------------------- /code/4_RankFeature/05_txt_feature_online.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChuanyuXue/KDDCUP-2020/HEAD/code/4_RankFeature/05_txt_feature_online.py -------------------------------------------------------------------------------- /code/4_RankFeature/06_interactive_model1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChuanyuXue/KDDCUP-2020/HEAD/code/4_RankFeature/06_interactive_model1.py -------------------------------------------------------------------------------- /code/4_RankFeature/06_interactive_offline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChuanyuXue/KDDCUP-2020/HEAD/code/4_RankFeature/06_interactive_offline.py -------------------------------------------------------------------------------- /code/4_RankFeature/06_interactive_online.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChuanyuXue/KDDCUP-2020/HEAD/code/4_RankFeature/06_interactive_online.py -------------------------------------------------------------------------------- /code/4_RankFeature/07_count_detail_model1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChuanyuXue/KDDCUP-2020/HEAD/code/4_RankFeature/07_count_detail_model1.py -------------------------------------------------------------------------------- /code/4_RankFeature/07_count_detail_offline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChuanyuXue/KDDCUP-2020/HEAD/code/4_RankFeature/07_count_detail_offline.py -------------------------------------------------------------------------------- /code/4_RankFeature/07_count_detail_online.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChuanyuXue/KDDCUP-2020/HEAD/code/4_RankFeature/07_count_detail_online.py -------------------------------------------------------------------------------- /code/4_RankFeature/08_user_feature_model1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChuanyuXue/KDDCUP-2020/HEAD/code/4_RankFeature/08_user_feature_model1.py -------------------------------------------------------------------------------- /code/4_RankFeature/08_user_feature_offline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChuanyuXue/KDDCUP-2020/HEAD/code/4_RankFeature/08_user_feature_offline.py -------------------------------------------------------------------------------- /code/4_RankFeature/08_user_feature_online.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChuanyuXue/KDDCUP-2020/HEAD/code/4_RankFeature/08_user_feature_online.py -------------------------------------------------------------------------------- /code/4_RankFeature/09_partial_sim_feature_model1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChuanyuXue/KDDCUP-2020/HEAD/code/4_RankFeature/09_partial_sim_feature_model1.py -------------------------------------------------------------------------------- /code/4_RankFeature/09_partial_sim_feature_offline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChuanyuXue/KDDCUP-2020/HEAD/code/4_RankFeature/09_partial_sim_feature_offline.py -------------------------------------------------------------------------------- /code/4_RankFeature/09_partial_sim_feature_online.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChuanyuXue/KDDCUP-2020/HEAD/code/4_RankFeature/09_partial_sim_feature_online.py -------------------------------------------------------------------------------- /code/4_RankFeature/10_emergency_feature_model1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChuanyuXue/KDDCUP-2020/HEAD/code/4_RankFeature/10_emergency_feature_model1.py -------------------------------------------------------------------------------- /code/4_RankFeature/10_emergency_feature_offline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChuanyuXue/KDDCUP-2020/HEAD/code/4_RankFeature/10_emergency_feature_offline.py -------------------------------------------------------------------------------- /code/4_RankFeature/10_emergency_feature_online.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChuanyuXue/KDDCUP-2020/HEAD/code/4_RankFeature/10_emergency_feature_online.py -------------------------------------------------------------------------------- /code/4_RankFeature/10_紧急feature_model1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChuanyuXue/KDDCUP-2020/HEAD/code/4_RankFeature/10_紧急feature_model1.py -------------------------------------------------------------------------------- /code/4_RankFeature/10_紧急feature_offline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChuanyuXue/KDDCUP-2020/HEAD/code/4_RankFeature/10_紧急feature_offline.py -------------------------------------------------------------------------------- /code/4_RankFeature/10_紧急feature_online.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChuanyuXue/KDDCUP-2020/HEAD/code/4_RankFeature/10_紧急feature_online.py -------------------------------------------------------------------------------- /code/4_RankFeature/4_RankFeature.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChuanyuXue/KDDCUP-2020/HEAD/code/4_RankFeature/4_RankFeature.zip -------------------------------------------------------------------------------- /code/5_Modeling/Model_Offline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChuanyuXue/KDDCUP-2020/HEAD/code/5_Modeling/Model_Offline.py -------------------------------------------------------------------------------- /code/5_Modeling/Model_Online.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChuanyuXue/KDDCUP-2020/HEAD/code/5_Modeling/Model_Online.py -------------------------------------------------------------------------------- /code/5_Modeling/ipynb_file.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChuanyuXue/KDDCUP-2020/HEAD/code/5_Modeling/ipynb_file.zip -------------------------------------------------------------------------------- /feature_list.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChuanyuXue/KDDCUP-2020/HEAD/feature_list.csv -------------------------------------------------------------------------------- /main.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChuanyuXue/KDDCUP-2020/HEAD/main.sh -------------------------------------------------------------------------------- /project_structure.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChuanyuXue/KDDCUP-2020/HEAD/project_structure.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChuanyuXue/KDDCUP-2020/HEAD/requirements.txt --------------------------------------------------------------------------------