sense2vec
sense2vec copied to clipboard
🦆 Contextually-keyed word vectors
Hello, I need some help regarding how to use precompute cache for most_similar function in sense2vec. I have successfully executed the script but I am unable to speed up the...
Hi I noticed this doesn't work with the spaCy transformers models. I'm wondering how to determine which subset of models are compatible with sense2vec. thanks!
The shift from ``` @plac.annotations ``` to using typer seems to be ignoring the max_docs argument. it is set at 10 ** 6, but i am getting a new file...
@svlandeg I installed sense2vec through pip I have v 1.0.2 and I get this error: ImportError: cannot import name 'cosine_similarity' from 'sense2vec.util' (/.conda/envs/NewEnv15/lib/python3.7/site-packages/sense2vec/util.py) Please let me know what I am...
hi there I just trying your model and I'm Getting this error: ``` Original exception was: Traceback (most recent call last): File "scripts/01_parse.py", line 3, in from spacy.tokens import DocBin...
Hi, I'm trying to precompute the cache for 2019 pretrained model with a google collab GPU (12 GB) and I always get a CUDA alllocating memory error How much memory...
Is there a way to specify the POS tag of the results you are looking for. Example: s2v.most_similar("dog|NOUN", n=10) returns [('puppy|NOUN', 0.9188), ('cat|NOUN', 0.9176), ('kitten|NOUN', 0.9081), ('pup|NOUN', 0.9074), ('own_dog|NOUN', 0.9028),...
Is there any way to get sense2vec working with spacy nightly? Upon importing sense2vec I get the following error: ``` from spacy import component ImportError: cannot import name 'component' from...
I am trying to add some new keys and find words similar to these keys. I was hoping do something on the following lines, for example: ``` vec=s2v['women|NOUN'] + s2v['king|NOUN']...
Hello there, I tried to install sense2vec via conda `conda install -c conda-forge sense2vec` and I got the following conflicts. `Package libcxxabi conflicts for: wasabi -> python -> libcxx[version='>=4.0.1'] ->...