├── .idea ├── CHIP2018.iml ├── codeStyles │ └── codeStyleConfig.xml ├── inspectionProfiles │ └── Project_Default.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── README.md ├── pic ├── DecomposableAttention.jpg ├── InferSent.jpg ├── Rank.jpg └── TextCNN.jpg └── src ├── _00_imports.py ├── _01_clean_embedding.py ├── _02_feature_engineering.py ├── _03_concat_features.py ├── _04_simplify_features.py ├── _05_prepare_data.py ├── _06_training_utils.py ├── _07_models.py ├── _08_ensemble.py ├── _09_stacking.py ├── _10_hill_climbing.py ├── _11_submission.py └── __init__.py /.idea/CHIP2018.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TianyuZhuuu/CHIP2018/HEAD/.idea/CHIP2018.iml -------------------------------------------------------------------------------- /.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TianyuZhuuu/CHIP2018/HEAD/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TianyuZhuuu/CHIP2018/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TianyuZhuuu/CHIP2018/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TianyuZhuuu/CHIP2018/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TianyuZhuuu/CHIP2018/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TianyuZhuuu/CHIP2018/HEAD/README.md -------------------------------------------------------------------------------- /pic/DecomposableAttention.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TianyuZhuuu/CHIP2018/HEAD/pic/DecomposableAttention.jpg -------------------------------------------------------------------------------- /pic/InferSent.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TianyuZhuuu/CHIP2018/HEAD/pic/InferSent.jpg -------------------------------------------------------------------------------- /pic/Rank.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TianyuZhuuu/CHIP2018/HEAD/pic/Rank.jpg -------------------------------------------------------------------------------- /pic/TextCNN.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TianyuZhuuu/CHIP2018/HEAD/pic/TextCNN.jpg -------------------------------------------------------------------------------- /src/_00_imports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TianyuZhuuu/CHIP2018/HEAD/src/_00_imports.py -------------------------------------------------------------------------------- /src/_01_clean_embedding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TianyuZhuuu/CHIP2018/HEAD/src/_01_clean_embedding.py -------------------------------------------------------------------------------- /src/_02_feature_engineering.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TianyuZhuuu/CHIP2018/HEAD/src/_02_feature_engineering.py -------------------------------------------------------------------------------- /src/_03_concat_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TianyuZhuuu/CHIP2018/HEAD/src/_03_concat_features.py -------------------------------------------------------------------------------- /src/_04_simplify_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TianyuZhuuu/CHIP2018/HEAD/src/_04_simplify_features.py -------------------------------------------------------------------------------- /src/_05_prepare_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TianyuZhuuu/CHIP2018/HEAD/src/_05_prepare_data.py -------------------------------------------------------------------------------- /src/_06_training_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TianyuZhuuu/CHIP2018/HEAD/src/_06_training_utils.py -------------------------------------------------------------------------------- /src/_07_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TianyuZhuuu/CHIP2018/HEAD/src/_07_models.py -------------------------------------------------------------------------------- /src/_08_ensemble.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TianyuZhuuu/CHIP2018/HEAD/src/_08_ensemble.py -------------------------------------------------------------------------------- /src/_09_stacking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TianyuZhuuu/CHIP2018/HEAD/src/_09_stacking.py -------------------------------------------------------------------------------- /src/_10_hill_climbing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TianyuZhuuu/CHIP2018/HEAD/src/_10_hill_climbing.py -------------------------------------------------------------------------------- /src/_11_submission.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TianyuZhuuu/CHIP2018/HEAD/src/_11_submission.py -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------