-
When I train an NER model and start from en_vectors_web_lg (instead of (en_core_web_lg)
(I passed it as the argument -m which is probably wrong because its not a model file)
So I get this error
…
-
What is wrong with this piece of code? It seems to follow the correct format for the latest spacy versions.
```python
other_pipes = [pipe for pipe in nlp.pipe_names if pipe != 'ner']
with nlp…
-
Classifier code in use for 2+ years. Run just last week using v2.0.12. Now when attempting to run with newly updated modules, receive error below. Don't see anything obvious from change guide to 2.1..…
-
Hi, I'm using spaCy for text processing in my own tool. In order to improve the speed, I disable some of spaCy's pipelines during different text processing tasks.
```
>>> import spacy
>>> nlp = s…
-
I am trying to update the entities of the pre-trained English model of spacy by adding some custom entities but every time I am facing the issue. I also try some of the code from the issue section but…
-
Is it ~possible and~ advisable to add a multilingual NER pipe from the [`xx` model](https://spacy.io/models/xx) to a blank [spaCy language](https://spacy.io/usage/models#languages) that supports t…
-
## How to reproduce the behaviour
I got a strange problem when loading a modified model, adding an `EnityRuler` to the pipeline with the `before='ner'` flag.
So I create my patterns, add them to m…
-
I have trained a custom NER model. When I save it and load it from disc it makes different predictions than if I keep it in RAM.
Everything seems to be loaded correctly, it gets the pipeline and t…
-
I have followed the approach below to train a custom NER Model:
https://github.com/Jcharis/Natural-Language-Processing-Tutorials/blob/master/Training%20the%20Named%20Entity%20Recognizer%20in%20SpaCy.…
-
## How to reproduce the behaviour
I am training a NER with the following code ([simple training style example](https://spacy.io/usage/training#training-simple-style))
```
# get names of other pipes…