Convolutional and recurrent deep neural networks for text sentiment analysis.
Convolutional model based on cnn-text-classification-tf.
Recurrent model based on example by aymericdamien.
Both models written in Tensorflow, and have been designed to allow for analyzing of sentinment of large text documents, such as works of literature once trained. Both can use word2vec to obtain pre-trained word embeddings to improve performance.
To train each model, run train_cnn.py and train_rnn.py.
python generateSentiment.py textfile model checkpoint
textfile
is the document to analyze sentiment from. Don't include .txt extension. For example, when processing 'kafka.txt,' use 'kafka'
model
is either "RNN" or "CNN"
checkpoint
is the latest model checkpoint, contained in the runs or rnn_runs folder