├── .gitignore ├── LICENSE ├── README.md ├── models.py ├── tokenizer-yelp.py ├── train.py └── util.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | *.log 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExplorerFreda/Structured-Self-Attentive-Sentence-Embedding/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExplorerFreda/Structured-Self-Attentive-Sentence-Embedding/HEAD/README.md -------------------------------------------------------------------------------- /models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExplorerFreda/Structured-Self-Attentive-Sentence-Embedding/HEAD/models.py -------------------------------------------------------------------------------- /tokenizer-yelp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExplorerFreda/Structured-Self-Attentive-Sentence-Embedding/HEAD/tokenizer-yelp.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExplorerFreda/Structured-Self-Attentive-Sentence-Embedding/HEAD/train.py -------------------------------------------------------------------------------- /util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExplorerFreda/Structured-Self-Attentive-Sentence-Embedding/HEAD/util.py --------------------------------------------------------------------------------