├── LICENSE.txt ├── README.md ├── code ├── model.py ├── my_layers.py ├── optimizers.py ├── reader.py ├── run_script.sh ├── train.py ├── utils.py └── w2vEmbReader.py ├── code_pretrain ├── pre_model.py ├── pre_script.sh ├── pre_train.py ├── read.py └── w2vEmbReader.py └── pretrained_weights ├── dense_weights_lt1.0.pkl ├── dense_weights_res1.0.pkl ├── lstm_weights_lt1.0.pkl ├── lstm_weights_res1.0.pkl ├── word_emb_lt1.0.pkl └── word_emb_res1.0.pkl /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruidan/Aspect-level-sentiment/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruidan/Aspect-level-sentiment/HEAD/README.md -------------------------------------------------------------------------------- /code/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruidan/Aspect-level-sentiment/HEAD/code/model.py -------------------------------------------------------------------------------- /code/my_layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruidan/Aspect-level-sentiment/HEAD/code/my_layers.py -------------------------------------------------------------------------------- /code/optimizers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruidan/Aspect-level-sentiment/HEAD/code/optimizers.py -------------------------------------------------------------------------------- /code/reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruidan/Aspect-level-sentiment/HEAD/code/reader.py -------------------------------------------------------------------------------- /code/run_script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruidan/Aspect-level-sentiment/HEAD/code/run_script.sh -------------------------------------------------------------------------------- /code/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruidan/Aspect-level-sentiment/HEAD/code/train.py -------------------------------------------------------------------------------- /code/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruidan/Aspect-level-sentiment/HEAD/code/utils.py -------------------------------------------------------------------------------- /code/w2vEmbReader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruidan/Aspect-level-sentiment/HEAD/code/w2vEmbReader.py -------------------------------------------------------------------------------- /code_pretrain/pre_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruidan/Aspect-level-sentiment/HEAD/code_pretrain/pre_model.py -------------------------------------------------------------------------------- /code_pretrain/pre_script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruidan/Aspect-level-sentiment/HEAD/code_pretrain/pre_script.sh -------------------------------------------------------------------------------- /code_pretrain/pre_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruidan/Aspect-level-sentiment/HEAD/code_pretrain/pre_train.py -------------------------------------------------------------------------------- /code_pretrain/read.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruidan/Aspect-level-sentiment/HEAD/code_pretrain/read.py -------------------------------------------------------------------------------- /code_pretrain/w2vEmbReader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruidan/Aspect-level-sentiment/HEAD/code_pretrain/w2vEmbReader.py -------------------------------------------------------------------------------- /pretrained_weights/dense_weights_lt1.0.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruidan/Aspect-level-sentiment/HEAD/pretrained_weights/dense_weights_lt1.0.pkl -------------------------------------------------------------------------------- /pretrained_weights/dense_weights_res1.0.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruidan/Aspect-level-sentiment/HEAD/pretrained_weights/dense_weights_res1.0.pkl -------------------------------------------------------------------------------- /pretrained_weights/lstm_weights_lt1.0.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruidan/Aspect-level-sentiment/HEAD/pretrained_weights/lstm_weights_lt1.0.pkl -------------------------------------------------------------------------------- /pretrained_weights/lstm_weights_res1.0.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruidan/Aspect-level-sentiment/HEAD/pretrained_weights/lstm_weights_res1.0.pkl -------------------------------------------------------------------------------- /pretrained_weights/word_emb_lt1.0.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruidan/Aspect-level-sentiment/HEAD/pretrained_weights/word_emb_lt1.0.pkl -------------------------------------------------------------------------------- /pretrained_weights/word_emb_res1.0.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruidan/Aspect-level-sentiment/HEAD/pretrained_weights/word_emb_res1.0.pkl --------------------------------------------------------------------------------