├── Capsule2D_Keras.py ├── Capsule2D_nlp.py ├── Capsule_Keras.py ├── README.md ├── ai-challenger ├── ResNet.py ├── attention_keras.py ├── dict │ ├── dict_ext.txt │ └── stopwords.txt ├── gru_caps.png ├── models.py ├── pre.py ├── pre_vector.py ├── pred.py ├── readme.md └── util.py ├── data ├── README.py ├── data.7z ├── data_utf.csv ├── dict.txt ├── stopwords.txt └── val_acc.png ├── fasttext_train.py ├── hashsim.py ├── model.py ├── model_train.py ├── preprocess.py ├── raw_data_clean.py └── train_test.py /Capsule2D_Keras.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxde01/sentiment_classify/HEAD/Capsule2D_Keras.py -------------------------------------------------------------------------------- /Capsule2D_nlp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxde01/sentiment_classify/HEAD/Capsule2D_nlp.py -------------------------------------------------------------------------------- /Capsule_Keras.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxde01/sentiment_classify/HEAD/Capsule_Keras.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxde01/sentiment_classify/HEAD/README.md -------------------------------------------------------------------------------- /ai-challenger/ResNet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxde01/sentiment_classify/HEAD/ai-challenger/ResNet.py -------------------------------------------------------------------------------- /ai-challenger/attention_keras.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxde01/sentiment_classify/HEAD/ai-challenger/attention_keras.py -------------------------------------------------------------------------------- /ai-challenger/dict/dict_ext.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxde01/sentiment_classify/HEAD/ai-challenger/dict/dict_ext.txt -------------------------------------------------------------------------------- /ai-challenger/dict/stopwords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxde01/sentiment_classify/HEAD/ai-challenger/dict/stopwords.txt -------------------------------------------------------------------------------- /ai-challenger/gru_caps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxde01/sentiment_classify/HEAD/ai-challenger/gru_caps.png -------------------------------------------------------------------------------- /ai-challenger/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxde01/sentiment_classify/HEAD/ai-challenger/models.py -------------------------------------------------------------------------------- /ai-challenger/pre.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxde01/sentiment_classify/HEAD/ai-challenger/pre.py -------------------------------------------------------------------------------- /ai-challenger/pre_vector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxde01/sentiment_classify/HEAD/ai-challenger/pre_vector.py -------------------------------------------------------------------------------- /ai-challenger/pred.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxde01/sentiment_classify/HEAD/ai-challenger/pred.py -------------------------------------------------------------------------------- /ai-challenger/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxde01/sentiment_classify/HEAD/ai-challenger/readme.md -------------------------------------------------------------------------------- /ai-challenger/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxde01/sentiment_classify/HEAD/ai-challenger/util.py -------------------------------------------------------------------------------- /data/README.py: -------------------------------------------------------------------------------- 1 | # 数据下载: 2 | https://pan.baidu.com/s/1rtIOWnWtQ4g_BY2zO0jS1w 密码: d7cu 3 | v1:103万 4 | v2:700多万 5 | -------------------------------------------------------------------------------- /data/data.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxde01/sentiment_classify/HEAD/data/data.7z -------------------------------------------------------------------------------- /data/data_utf.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxde01/sentiment_classify/HEAD/data/data_utf.csv -------------------------------------------------------------------------------- /data/dict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxde01/sentiment_classify/HEAD/data/dict.txt -------------------------------------------------------------------------------- /data/stopwords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxde01/sentiment_classify/HEAD/data/stopwords.txt -------------------------------------------------------------------------------- /data/val_acc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxde01/sentiment_classify/HEAD/data/val_acc.png -------------------------------------------------------------------------------- /fasttext_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxde01/sentiment_classify/HEAD/fasttext_train.py -------------------------------------------------------------------------------- /hashsim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxde01/sentiment_classify/HEAD/hashsim.py -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxde01/sentiment_classify/HEAD/model.py -------------------------------------------------------------------------------- /model_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxde01/sentiment_classify/HEAD/model_train.py -------------------------------------------------------------------------------- /preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxde01/sentiment_classify/HEAD/preprocess.py -------------------------------------------------------------------------------- /raw_data_clean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxde01/sentiment_classify/HEAD/raw_data_clean.py -------------------------------------------------------------------------------- /train_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxde01/sentiment_classify/HEAD/train_test.py --------------------------------------------------------------------------------