├── .gitattributes ├── LICENSE ├── README.md ├── Readme.txt ├── feature_extraction1.py ├── feature_extraction2.py ├── gen_mean_lda.py ├── keras_classifier.py ├── make_idf.py ├── model ├── chinese_stopwords.txt ├── dict.txt ├── idf.txt └── task2_label_space.txt ├── segmentation.py ├── tf_idf.py ├── word2vec_model.py └── xgb_train.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/03pie/SMPCUP2017/HEAD/.gitattributes -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/03pie/SMPCUP2017/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/03pie/SMPCUP2017/HEAD/README.md -------------------------------------------------------------------------------- /Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/03pie/SMPCUP2017/HEAD/Readme.txt -------------------------------------------------------------------------------- /feature_extraction1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/03pie/SMPCUP2017/HEAD/feature_extraction1.py -------------------------------------------------------------------------------- /feature_extraction2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/03pie/SMPCUP2017/HEAD/feature_extraction2.py -------------------------------------------------------------------------------- /gen_mean_lda.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/03pie/SMPCUP2017/HEAD/gen_mean_lda.py -------------------------------------------------------------------------------- /keras_classifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/03pie/SMPCUP2017/HEAD/keras_classifier.py -------------------------------------------------------------------------------- /make_idf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/03pie/SMPCUP2017/HEAD/make_idf.py -------------------------------------------------------------------------------- /model/chinese_stopwords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/03pie/SMPCUP2017/HEAD/model/chinese_stopwords.txt -------------------------------------------------------------------------------- /model/dict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/03pie/SMPCUP2017/HEAD/model/dict.txt -------------------------------------------------------------------------------- /model/idf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/03pie/SMPCUP2017/HEAD/model/idf.txt -------------------------------------------------------------------------------- /model/task2_label_space.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/03pie/SMPCUP2017/HEAD/model/task2_label_space.txt -------------------------------------------------------------------------------- /segmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/03pie/SMPCUP2017/HEAD/segmentation.py -------------------------------------------------------------------------------- /tf_idf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/03pie/SMPCUP2017/HEAD/tf_idf.py -------------------------------------------------------------------------------- /word2vec_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/03pie/SMPCUP2017/HEAD/word2vec_model.py -------------------------------------------------------------------------------- /xgb_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/03pie/SMPCUP2017/HEAD/xgb_train.py --------------------------------------------------------------------------------