├── README.md ├── code ├── __pycache__ │ ├── dataset.cpython-36.pyc │ ├── lstm.cpython-36.pyc │ └── word2vec.cpython-36.pyc ├── dataset.py ├── infer.py ├── lstm.py ├── train.py └── word2vec.py ├── data ├── angry.txt ├── anxious.txt ├── depress.txt └── sad.txt └── model ├── Word2Vec_java.pkl ├── lstm_java.yml └── lstm_java_total.h5 /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLLXW/MultiClassify_LSTM_ForChinese/HEAD/README.md -------------------------------------------------------------------------------- /code/__pycache__/dataset.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLLXW/MultiClassify_LSTM_ForChinese/HEAD/code/__pycache__/dataset.cpython-36.pyc -------------------------------------------------------------------------------- /code/__pycache__/lstm.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLLXW/MultiClassify_LSTM_ForChinese/HEAD/code/__pycache__/lstm.cpython-36.pyc -------------------------------------------------------------------------------- /code/__pycache__/word2vec.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLLXW/MultiClassify_LSTM_ForChinese/HEAD/code/__pycache__/word2vec.cpython-36.pyc -------------------------------------------------------------------------------- /code/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLLXW/MultiClassify_LSTM_ForChinese/HEAD/code/dataset.py -------------------------------------------------------------------------------- /code/infer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLLXW/MultiClassify_LSTM_ForChinese/HEAD/code/infer.py -------------------------------------------------------------------------------- /code/lstm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLLXW/MultiClassify_LSTM_ForChinese/HEAD/code/lstm.py -------------------------------------------------------------------------------- /code/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLLXW/MultiClassify_LSTM_ForChinese/HEAD/code/train.py -------------------------------------------------------------------------------- /code/word2vec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLLXW/MultiClassify_LSTM_ForChinese/HEAD/code/word2vec.py -------------------------------------------------------------------------------- /data/angry.txt: -------------------------------------------------------------------------------- 1 | # 2 | -------------------------------------------------------------------------------- /data/anxious.txt: -------------------------------------------------------------------------------- 1 | # 2 | -------------------------------------------------------------------------------- /data/depress.txt: -------------------------------------------------------------------------------- 1 | # 2 | -------------------------------------------------------------------------------- /data/sad.txt: -------------------------------------------------------------------------------- 1 | # 2 | -------------------------------------------------------------------------------- /model/Word2Vec_java.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLLXW/MultiClassify_LSTM_ForChinese/HEAD/model/Word2Vec_java.pkl -------------------------------------------------------------------------------- /model/lstm_java.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLLXW/MultiClassify_LSTM_ForChinese/HEAD/model/lstm_java.yml -------------------------------------------------------------------------------- /model/lstm_java_total.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLLXW/MultiClassify_LSTM_ForChinese/HEAD/model/lstm_java_total.h5 --------------------------------------------------------------------------------