Fast_Sentence_Embeddings
Fast_Sentence_Embeddings copied to clipboard
Compute Sentence Embeddings Fast!
[ ] Sentencevectors: Global: [ ] Remove normalized vector files and replace with NN ANN: --> (Annoy, with Option for Google ScANN?) [ ] Only construct index when when calling...
In `sentencevectors.py` most_similar() can return the `topn` most similar words. However it would be useful to be able to specify a similarity threshold above which the sentences are returned. For...
The hack around numpy during installation with poetry throws an attribute error due to the lack of the attribute during. ``` Preparing metadata (pyproject.toml): finished with status 'error' error: subprocess-exited-with-error...
``` TypeError Traceback (most recent call last) [](https://localhost:8080/#) in 2 3 vecs = Vectors.from_pretrained("glove-wiki-gigaword-50") ----> 4 model = Average(vecs) 5 6 sentences = [["cat", "say", "meow"], ["dog", "say", "woof"]] 1...