├── .gitignore ├── README.md ├── data └── input │ ├── training_set.txt │ └── validation_set.txt ├── docs └── images │ ├── history_cnn_matrix.png │ ├── history_lstm_avg.png │ ├── history_lstm_fasttext.png │ ├── history_lstm_matrix.png │ ├── history_nn_avg.png │ └── history_nn_fasttext.png ├── requirements.txt └── src ├── preprocessing.py ├── sentiment_analysis_dl.py └── sentiment_analysis_ml.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxw0109/ChineseSentimentAnalysis/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxw0109/ChineseSentimentAnalysis/HEAD/README.md -------------------------------------------------------------------------------- /data/input/training_set.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxw0109/ChineseSentimentAnalysis/HEAD/data/input/training_set.txt -------------------------------------------------------------------------------- /data/input/validation_set.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxw0109/ChineseSentimentAnalysis/HEAD/data/input/validation_set.txt -------------------------------------------------------------------------------- /docs/images/history_cnn_matrix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxw0109/ChineseSentimentAnalysis/HEAD/docs/images/history_cnn_matrix.png -------------------------------------------------------------------------------- /docs/images/history_lstm_avg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxw0109/ChineseSentimentAnalysis/HEAD/docs/images/history_lstm_avg.png -------------------------------------------------------------------------------- /docs/images/history_lstm_fasttext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxw0109/ChineseSentimentAnalysis/HEAD/docs/images/history_lstm_fasttext.png -------------------------------------------------------------------------------- /docs/images/history_lstm_matrix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxw0109/ChineseSentimentAnalysis/HEAD/docs/images/history_lstm_matrix.png -------------------------------------------------------------------------------- /docs/images/history_nn_avg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxw0109/ChineseSentimentAnalysis/HEAD/docs/images/history_nn_avg.png -------------------------------------------------------------------------------- /docs/images/history_nn_fasttext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxw0109/ChineseSentimentAnalysis/HEAD/docs/images/history_nn_fasttext.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxw0109/ChineseSentimentAnalysis/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/preprocessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxw0109/ChineseSentimentAnalysis/HEAD/src/preprocessing.py -------------------------------------------------------------------------------- /src/sentiment_analysis_dl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxw0109/ChineseSentimentAnalysis/HEAD/src/sentiment_analysis_dl.py -------------------------------------------------------------------------------- /src/sentiment_analysis_ml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxw0109/ChineseSentimentAnalysis/HEAD/src/sentiment_analysis_ml.py --------------------------------------------------------------------------------