├── .gitignore ├── LICENSE ├── README.md └── code ├── constants.py ├── feature.py ├── feature_merge.py ├── gen_all_stage.py ├── gen_dict.py ├── gen_item_blend_sim.py ├── item2time.py ├── itemcf_p1feat.py ├── lgb_data_preprocess.py ├── lgb_model.py ├── main.sh ├── main2.sh ├── ndcg_tools.py ├── result_process.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aister2020/KDDCUP_2020_Debiasing_1st_Place/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aister2020/KDDCUP_2020_Debiasing_1st_Place/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aister2020/KDDCUP_2020_Debiasing_1st_Place/HEAD/README.md -------------------------------------------------------------------------------- /code/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aister2020/KDDCUP_2020_Debiasing_1st_Place/HEAD/code/constants.py -------------------------------------------------------------------------------- /code/feature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aister2020/KDDCUP_2020_Debiasing_1st_Place/HEAD/code/feature.py -------------------------------------------------------------------------------- /code/feature_merge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aister2020/KDDCUP_2020_Debiasing_1st_Place/HEAD/code/feature_merge.py -------------------------------------------------------------------------------- /code/gen_all_stage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aister2020/KDDCUP_2020_Debiasing_1st_Place/HEAD/code/gen_all_stage.py -------------------------------------------------------------------------------- /code/gen_dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aister2020/KDDCUP_2020_Debiasing_1st_Place/HEAD/code/gen_dict.py -------------------------------------------------------------------------------- /code/gen_item_blend_sim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aister2020/KDDCUP_2020_Debiasing_1st_Place/HEAD/code/gen_item_blend_sim.py -------------------------------------------------------------------------------- /code/item2time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aister2020/KDDCUP_2020_Debiasing_1st_Place/HEAD/code/item2time.py -------------------------------------------------------------------------------- /code/itemcf_p1feat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aister2020/KDDCUP_2020_Debiasing_1st_Place/HEAD/code/itemcf_p1feat.py -------------------------------------------------------------------------------- /code/lgb_data_preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aister2020/KDDCUP_2020_Debiasing_1st_Place/HEAD/code/lgb_data_preprocess.py -------------------------------------------------------------------------------- /code/lgb_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aister2020/KDDCUP_2020_Debiasing_1st_Place/HEAD/code/lgb_model.py -------------------------------------------------------------------------------- /code/main.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aister2020/KDDCUP_2020_Debiasing_1st_Place/HEAD/code/main.sh -------------------------------------------------------------------------------- /code/main2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aister2020/KDDCUP_2020_Debiasing_1st_Place/HEAD/code/main2.sh -------------------------------------------------------------------------------- /code/ndcg_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aister2020/KDDCUP_2020_Debiasing_1st_Place/HEAD/code/ndcg_tools.py -------------------------------------------------------------------------------- /code/result_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aister2020/KDDCUP_2020_Debiasing_1st_Place/HEAD/code/result_process.py -------------------------------------------------------------------------------- /code/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aister2020/KDDCUP_2020_Debiasing_1st_Place/HEAD/code/utils.py --------------------------------------------------------------------------------