├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── demo.ipynb ├── extract_features.py ├── models.py └── samples.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/InferSent/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/InferSent/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/InferSent/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/InferSent/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/InferSent/HEAD/README.md -------------------------------------------------------------------------------- /demo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/InferSent/HEAD/demo.ipynb -------------------------------------------------------------------------------- /extract_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/InferSent/HEAD/extract_features.py -------------------------------------------------------------------------------- /models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/InferSent/HEAD/models.py -------------------------------------------------------------------------------- /samples.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/InferSent/HEAD/samples.txt --------------------------------------------------------------------------------