-
Depends on issue #1.
https://www.npmjs.com/package/wink-lemmatizer
-
Following the code from https://trankit.readthedocs.io/en/latest/training.html#training-a-lemmatizer i get a KeyError: 'lemma':
```
Setting up training config...
Initialized lemmatizer trainer
Tra…
-
Hi,
using your library version: 0.9.1
I found inconsistent behavior when using greedy option.
See example below, where I was expecting the lemmatized versions of the text to be equal when we for…
dysby updated
6 months ago
-
## How to reproduce the behaviour
#create a new conda environment
`conda create -n test python=3.8 -y`
#install spacy
`pip install spacy==2.1.9`
## Your Environment
* Operating System:
`N…
-
The only way to achieve lemmatization today is to use the SynonymFilterFactory. The available stemmers are also inaccurate since they are only following simplistic rules.
A dictionary-based lemmatize…
-
Tere!
I'm trying to use your lemmatizer, but there is an issue coming as soon as I tried to use the example you presented us:
```
from suffix_lemmatizer import SuffixLemmatizer
sl = SuffixLemm…
-
In `2-svd-nmf-topic-modeling.ipynb` under the section `Spacy` you use:
```
from spacy.lemmatizer import Lemmatizer
lemmatizer = Lemmatizer()
[lemmatizer.lookup(word) for word in word_list]
```
U…
-
Hi there,
I met this error when trying to add FCoref to spaCy:
nlp = spacy.load("en_core_web_sm")
nlp.add_pipe("fastcoref")
ValueError: [E002] Can't find factory for 'fastcoref' for language…
-
While defining create_component, only lemmatizer_path is getting passed and there is not an option to utilise use_plain_lemmatization from spaCyIWNLP, but in spaCyIWNLP's constructor we can pass use_p…
-
Hey, I was trying to load the pre-trained model but it shows
ValueError: [E002] Can't find factory for 'transformer' for language English (en). This usually happens when spaCy calls `nlp.create_pi…