├── .gitignore ├── correlate.py ├── d2v_feature_cache.py ├── deep_models ├── .gitignore ├── doc2vec.py ├── environment.py ├── event_rnn.py ├── mlp_local.py ├── readme.md ├── run_mlp.py └── train_mlp.py ├── deprecated ├── myScripts.py └── train_test_on_filtered_candidates.py ├── doc2vec_candidates.py ├── extend_pairs.py ├── extract_user_features.py ├── get_d2v_order.py ├── inference.py ├── merge.py ├── readme.md ├── run_xg.py ├── sequence_features.py ├── shared ├── __init__.py ├── ordered_object.py └── utilities.py ├── test.py ├── tf_idf_candidates.py └── xg_lib.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanzytay/CIKM_CUP/HEAD/.gitignore -------------------------------------------------------------------------------- /correlate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanzytay/CIKM_CUP/HEAD/correlate.py -------------------------------------------------------------------------------- /d2v_feature_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanzytay/CIKM_CUP/HEAD/d2v_feature_cache.py -------------------------------------------------------------------------------- /deep_models/.gitignore: -------------------------------------------------------------------------------- 1 | *.gz 2 | models/ -------------------------------------------------------------------------------- /deep_models/doc2vec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanzytay/CIKM_CUP/HEAD/deep_models/doc2vec.py -------------------------------------------------------------------------------- /deep_models/environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanzytay/CIKM_CUP/HEAD/deep_models/environment.py -------------------------------------------------------------------------------- /deep_models/event_rnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanzytay/CIKM_CUP/HEAD/deep_models/event_rnn.py -------------------------------------------------------------------------------- /deep_models/mlp_local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanzytay/CIKM_CUP/HEAD/deep_models/mlp_local.py -------------------------------------------------------------------------------- /deep_models/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanzytay/CIKM_CUP/HEAD/deep_models/readme.md -------------------------------------------------------------------------------- /deep_models/run_mlp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanzytay/CIKM_CUP/HEAD/deep_models/run_mlp.py -------------------------------------------------------------------------------- /deep_models/train_mlp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanzytay/CIKM_CUP/HEAD/deep_models/train_mlp.py -------------------------------------------------------------------------------- /deprecated/myScripts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanzytay/CIKM_CUP/HEAD/deprecated/myScripts.py -------------------------------------------------------------------------------- /deprecated/train_test_on_filtered_candidates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanzytay/CIKM_CUP/HEAD/deprecated/train_test_on_filtered_candidates.py -------------------------------------------------------------------------------- /doc2vec_candidates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanzytay/CIKM_CUP/HEAD/doc2vec_candidates.py -------------------------------------------------------------------------------- /extend_pairs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanzytay/CIKM_CUP/HEAD/extend_pairs.py -------------------------------------------------------------------------------- /extract_user_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanzytay/CIKM_CUP/HEAD/extract_user_features.py -------------------------------------------------------------------------------- /get_d2v_order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanzytay/CIKM_CUP/HEAD/get_d2v_order.py -------------------------------------------------------------------------------- /inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanzytay/CIKM_CUP/HEAD/inference.py -------------------------------------------------------------------------------- /merge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanzytay/CIKM_CUP/HEAD/merge.py -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanzytay/CIKM_CUP/HEAD/readme.md -------------------------------------------------------------------------------- /run_xg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanzytay/CIKM_CUP/HEAD/run_xg.py -------------------------------------------------------------------------------- /sequence_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanzytay/CIKM_CUP/HEAD/sequence_features.py -------------------------------------------------------------------------------- /shared/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /shared/ordered_object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanzytay/CIKM_CUP/HEAD/shared/ordered_object.py -------------------------------------------------------------------------------- /shared/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanzytay/CIKM_CUP/HEAD/shared/utilities.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanzytay/CIKM_CUP/HEAD/test.py -------------------------------------------------------------------------------- /tf_idf_candidates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanzytay/CIKM_CUP/HEAD/tf_idf_candidates.py -------------------------------------------------------------------------------- /xg_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanzytay/CIKM_CUP/HEAD/xg_lib.py --------------------------------------------------------------------------------