├── BERT ├── BERT+CNN.py ├── BERT+CNNLSTM.py ├── BERT+RCNN.py ├── Bert_LR.py ├── base_model.py └── models.py ├── BiLSTM ├── BiLSTM+glove+Sentiment.py └── BiLSTM+random+Sentiment.py ├── CNN ├── CNN+glove+Senntiment.py └── CNN+random+Sentiment.py ├── CNN_LSTM ├── CNNLSTM+Random+Sentiment.py └── CNNLSTM+glove+Sentiment.py ├── LSTM ├── LSTM+glove+Sentiment.py └── LSTM+random+Sentiment.py └── Transformer_ATT ├── Transformer_ATT_sentiment.py └── Transformer_Attention.py /BERT/BERT+CNN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vincent131499/LauSentiNet/HEAD/BERT/BERT+CNN.py -------------------------------------------------------------------------------- /BERT/BERT+CNNLSTM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vincent131499/LauSentiNet/HEAD/BERT/BERT+CNNLSTM.py -------------------------------------------------------------------------------- /BERT/BERT+RCNN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vincent131499/LauSentiNet/HEAD/BERT/BERT+RCNN.py -------------------------------------------------------------------------------- /BERT/Bert_LR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vincent131499/LauSentiNet/HEAD/BERT/Bert_LR.py -------------------------------------------------------------------------------- /BERT/base_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vincent131499/LauSentiNet/HEAD/BERT/base_model.py -------------------------------------------------------------------------------- /BERT/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vincent131499/LauSentiNet/HEAD/BERT/models.py -------------------------------------------------------------------------------- /BiLSTM/BiLSTM+glove+Sentiment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vincent131499/LauSentiNet/HEAD/BiLSTM/BiLSTM+glove+Sentiment.py -------------------------------------------------------------------------------- /BiLSTM/BiLSTM+random+Sentiment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vincent131499/LauSentiNet/HEAD/BiLSTM/BiLSTM+random+Sentiment.py -------------------------------------------------------------------------------- /CNN/CNN+glove+Senntiment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vincent131499/LauSentiNet/HEAD/CNN/CNN+glove+Senntiment.py -------------------------------------------------------------------------------- /CNN/CNN+random+Sentiment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vincent131499/LauSentiNet/HEAD/CNN/CNN+random+Sentiment.py -------------------------------------------------------------------------------- /CNN_LSTM/CNNLSTM+Random+Sentiment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vincent131499/LauSentiNet/HEAD/CNN_LSTM/CNNLSTM+Random+Sentiment.py -------------------------------------------------------------------------------- /CNN_LSTM/CNNLSTM+glove+Sentiment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vincent131499/LauSentiNet/HEAD/CNN_LSTM/CNNLSTM+glove+Sentiment.py -------------------------------------------------------------------------------- /LSTM/LSTM+glove+Sentiment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vincent131499/LauSentiNet/HEAD/LSTM/LSTM+glove+Sentiment.py -------------------------------------------------------------------------------- /LSTM/LSTM+random+Sentiment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vincent131499/LauSentiNet/HEAD/LSTM/LSTM+random+Sentiment.py -------------------------------------------------------------------------------- /Transformer_ATT/Transformer_ATT_sentiment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vincent131499/LauSentiNet/HEAD/Transformer_ATT/Transformer_ATT_sentiment.py -------------------------------------------------------------------------------- /Transformer_ATT/Transformer_Attention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vincent131499/LauSentiNet/HEAD/Transformer_ATT/Transformer_Attention.py --------------------------------------------------------------------------------