├── README.md ├── code_file ├── agg_util.py ├── data_preprocess.py ├── gen_click_count_feat.py ├── gen_duplicate_click_feat.py ├── gen_item_ctr_feat.py ├── gen_mean_value_feat.py └── train.py ├── feat_file └── README.md ├── raw_data └── README.md └── result_file └── README.md /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmlaughing/IJCAI-18/HEAD/README.md -------------------------------------------------------------------------------- /code_file/agg_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmlaughing/IJCAI-18/HEAD/code_file/agg_util.py -------------------------------------------------------------------------------- /code_file/data_preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmlaughing/IJCAI-18/HEAD/code_file/data_preprocess.py -------------------------------------------------------------------------------- /code_file/gen_click_count_feat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmlaughing/IJCAI-18/HEAD/code_file/gen_click_count_feat.py -------------------------------------------------------------------------------- /code_file/gen_duplicate_click_feat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmlaughing/IJCAI-18/HEAD/code_file/gen_duplicate_click_feat.py -------------------------------------------------------------------------------- /code_file/gen_item_ctr_feat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmlaughing/IJCAI-18/HEAD/code_file/gen_item_ctr_feat.py -------------------------------------------------------------------------------- /code_file/gen_mean_value_feat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmlaughing/IJCAI-18/HEAD/code_file/gen_mean_value_feat.py -------------------------------------------------------------------------------- /code_file/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmlaughing/IJCAI-18/HEAD/code_file/train.py -------------------------------------------------------------------------------- /feat_file/README.md: -------------------------------------------------------------------------------- 1 | # 存放生成的特征文件 2 | -------------------------------------------------------------------------------- /raw_data/README.md: -------------------------------------------------------------------------------- 1 | # 存放原始数据 2 | -------------------------------------------------------------------------------- /result_file/README.md: -------------------------------------------------------------------------------- 1 | # 存放结果文件 2 | --------------------------------------------------------------------------------