├── .dockerignore ├── .gitattributes ├── .gitignore ├── .isort.cfg ├── .lgtm.yml ├── .travis.yml ├── Dockerfile ├── LICENSE ├── MANIFEST.in ├── README.md ├── evaluation ├── LICENSE.txt ├── readme.txt ├── sts-dev.csv ├── sts-test.csv └── sts-train.csv ├── fse ├── __init__.py ├── inputs.py ├── models │ ├── __init__.py │ ├── average.py │ ├── average_inner.c │ ├── average_inner.pxd │ ├── average_inner.pyx │ ├── base_s2v.py │ ├── sentencevectors.py │ ├── sif.py │ ├── usif.py │ ├── utils.py │ └── voidptr.h └── vectors.py ├── media └── fse.png ├── notebooks ├── STS-Benchmarks.ipynb ├── Speed Comparision.ipynb └── Tutorial.ipynb ├── release.sh ├── setup.py ├── test ├── __init__.py ├── test_average.py ├── test_base_s2v.py ├── test_data │ └── test_sentences.txt ├── test_inputs.py ├── test_sentencevectors.py ├── test_sif.py ├── test_usif.py ├── test_utils.py └── test_vectors.py └── tests.sh /.dockerignore: -------------------------------------------------------------------------------- 1 | build 2 | dist 3 | *.c 4 | *.so -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oborchers/Fast_Sentence_Embeddings/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oborchers/Fast_Sentence_Embeddings/HEAD/.gitignore -------------------------------------------------------------------------------- /.isort.cfg: -------------------------------------------------------------------------------- 1 | [settings] 2 | profile = black -------------------------------------------------------------------------------- /.lgtm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oborchers/Fast_Sentence_Embeddings/HEAD/.lgtm.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oborchers/Fast_Sentence_Embeddings/HEAD/.travis.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oborchers/Fast_Sentence_Embeddings/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oborchers/Fast_Sentence_Embeddings/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oborchers/Fast_Sentence_Embeddings/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oborchers/Fast_Sentence_Embeddings/HEAD/README.md -------------------------------------------------------------------------------- /evaluation/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oborchers/Fast_Sentence_Embeddings/HEAD/evaluation/LICENSE.txt -------------------------------------------------------------------------------- /evaluation/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oborchers/Fast_Sentence_Embeddings/HEAD/evaluation/readme.txt -------------------------------------------------------------------------------- /evaluation/sts-dev.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oborchers/Fast_Sentence_Embeddings/HEAD/evaluation/sts-dev.csv -------------------------------------------------------------------------------- /evaluation/sts-test.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oborchers/Fast_Sentence_Embeddings/HEAD/evaluation/sts-test.csv -------------------------------------------------------------------------------- /evaluation/sts-train.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oborchers/Fast_Sentence_Embeddings/HEAD/evaluation/sts-train.csv -------------------------------------------------------------------------------- /fse/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oborchers/Fast_Sentence_Embeddings/HEAD/fse/__init__.py -------------------------------------------------------------------------------- /fse/inputs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oborchers/Fast_Sentence_Embeddings/HEAD/fse/inputs.py -------------------------------------------------------------------------------- /fse/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oborchers/Fast_Sentence_Embeddings/HEAD/fse/models/__init__.py -------------------------------------------------------------------------------- /fse/models/average.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oborchers/Fast_Sentence_Embeddings/HEAD/fse/models/average.py -------------------------------------------------------------------------------- /fse/models/average_inner.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oborchers/Fast_Sentence_Embeddings/HEAD/fse/models/average_inner.c -------------------------------------------------------------------------------- /fse/models/average_inner.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oborchers/Fast_Sentence_Embeddings/HEAD/fse/models/average_inner.pxd -------------------------------------------------------------------------------- /fse/models/average_inner.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oborchers/Fast_Sentence_Embeddings/HEAD/fse/models/average_inner.pyx -------------------------------------------------------------------------------- /fse/models/base_s2v.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oborchers/Fast_Sentence_Embeddings/HEAD/fse/models/base_s2v.py -------------------------------------------------------------------------------- /fse/models/sentencevectors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oborchers/Fast_Sentence_Embeddings/HEAD/fse/models/sentencevectors.py -------------------------------------------------------------------------------- /fse/models/sif.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oborchers/Fast_Sentence_Embeddings/HEAD/fse/models/sif.py -------------------------------------------------------------------------------- /fse/models/usif.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oborchers/Fast_Sentence_Embeddings/HEAD/fse/models/usif.py -------------------------------------------------------------------------------- /fse/models/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oborchers/Fast_Sentence_Embeddings/HEAD/fse/models/utils.py -------------------------------------------------------------------------------- /fse/models/voidptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oborchers/Fast_Sentence_Embeddings/HEAD/fse/models/voidptr.h -------------------------------------------------------------------------------- /fse/vectors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oborchers/Fast_Sentence_Embeddings/HEAD/fse/vectors.py -------------------------------------------------------------------------------- /media/fse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oborchers/Fast_Sentence_Embeddings/HEAD/media/fse.png -------------------------------------------------------------------------------- /notebooks/STS-Benchmarks.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oborchers/Fast_Sentence_Embeddings/HEAD/notebooks/STS-Benchmarks.ipynb -------------------------------------------------------------------------------- /notebooks/Speed Comparision.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oborchers/Fast_Sentence_Embeddings/HEAD/notebooks/Speed Comparision.ipynb -------------------------------------------------------------------------------- /notebooks/Tutorial.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oborchers/Fast_Sentence_Embeddings/HEAD/notebooks/Tutorial.ipynb -------------------------------------------------------------------------------- /release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oborchers/Fast_Sentence_Embeddings/HEAD/release.sh -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oborchers/Fast_Sentence_Embeddings/HEAD/setup.py -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/test_average.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oborchers/Fast_Sentence_Embeddings/HEAD/test/test_average.py -------------------------------------------------------------------------------- /test/test_base_s2v.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oborchers/Fast_Sentence_Embeddings/HEAD/test/test_base_s2v.py -------------------------------------------------------------------------------- /test/test_data/test_sentences.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oborchers/Fast_Sentence_Embeddings/HEAD/test/test_data/test_sentences.txt -------------------------------------------------------------------------------- /test/test_inputs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oborchers/Fast_Sentence_Embeddings/HEAD/test/test_inputs.py -------------------------------------------------------------------------------- /test/test_sentencevectors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oborchers/Fast_Sentence_Embeddings/HEAD/test/test_sentencevectors.py -------------------------------------------------------------------------------- /test/test_sif.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oborchers/Fast_Sentence_Embeddings/HEAD/test/test_sif.py -------------------------------------------------------------------------------- /test/test_usif.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oborchers/Fast_Sentence_Embeddings/HEAD/test/test_usif.py -------------------------------------------------------------------------------- /test/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oborchers/Fast_Sentence_Embeddings/HEAD/test/test_utils.py -------------------------------------------------------------------------------- /test/test_vectors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oborchers/Fast_Sentence_Embeddings/HEAD/test/test_vectors.py -------------------------------------------------------------------------------- /tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oborchers/Fast_Sentence_Embeddings/HEAD/tests.sh --------------------------------------------------------------------------------