-
-
-
-
can I user your program as a stemmer or/and lemmatizer for Kazakh language?
-
```
>>> import Stemmer
>>> stemmer = Stemmer.Stemmer('english')
>>> print(stemmer.stemWord('poorer'))
poorer
>>> print(stemmer.stemWord('cleaner'))
cleaner
>>> print(stemmer.stemWord('cleanest'…
-
### What happened?
Unable to install bundled Qdrant client and fastembed via pip in a virtualenv. Python 3.11, Linux ARM 64
```
virtualenv -p python3.11 .env
source .env/bin/activate
pip instal…
-
Using ngram in combination with the stemmer seems to create weird results. Considering the following setup:
Using tantivy: 0.21.0
```rust
let ngram = NgramTokenizer::all_ngrams(3, 8).unwrap();
…
ctron updated
9 months ago
-
Would be nice if Stemmer supported multiple languages on sites that have Polylang (or WPML) installed.
-
The lancaster stemmer is a more aggressive stemming algorithm than porter, but also faster.
-
The stemmer we are using is coming from a library which seems to be written mainly in C and it is not published on Maven (see https://github.com/snowballstem/snowball/issues/11). I think we could cons…