-
Whether I use -t argument or not.
```
(spacy) mememe@ubuntugpu:~$ parse-as-conll en_core_web_sm spacy --input_str "I like cookies. What about you?" -t --include_headers
Traceback (most recent call …
-
Happens when I do:
```
pip uninstall neuralcoref
pip install neuralcoref --no-binary neuralcoref
# Load your usual SpaCy model (one of SpaCy English models)
import spacy
nlp = spacy.load('en')…
-
**Describe the bug**
When I run the following code:
from quickumls.spacy_component import SpacyQuickUMLS
nlp = spacy.load('en_core_web_sm')
quickumls_component = SpacyQuickUMLS(nlp, '/home/s…
-
I'm using `spacy-affixes` as part of the SpaCy pipeline, as explained in the usage guide. It has been working properly until I tried the following sentence: "Sube el paro". When doing ```nlp("Sube el …
-
## How to reproduce the behaviour
```python
nlp = spacy.load('en_core_web_lg')
with open('data/1971 Davis Cup.txt', encoding='utf-8') as file:
for line in file:
line = line.st…
-
Hi :), I want train Neuralcoref in language Spanish. First I try train Neuralcoref in English, I get a corpus with format *.v4_gold_conll from this url: **https://github.com/clab/att-coref/tree/master…
-
Добрый день,
По какой-то причине имена, отчества определяются как ORG, вместо PERS. Например в
`import spacy
text = "Елена Владимировна, покажите мне монету, которую нашел Александр!"
if …
-
Hi there, I'm new to spacy and a having a bit of a silly error, hoping someone might be able to help me out.
I've installed spacy using pip and have successfully loaded an english model like so:
`…
-
OSError: [E941] Can't find model 'en'. It looks like you're trying to load a model from a shortcut, which is obsolete as of spaCy v3.0. To load the model, use its full name instead:
nlp = spacy.loa…
-
AttributeError: [E046] Can't retrieve unregistered extension attribute 'has_grammar_error'. Did you forget to call the `set_extension` method?
I have cloned this repo and ran this script:
import s…