natural icon indicating copy to clipboard operation
natural copied to clipboard

Umlaute with stemmer de

Open getriebesand opened this issue 1 year ago • 0 comments

Describe the bug "grüne" will be "grun" with the german stemmer. But it must be "grün"

To Reproduce

const natural = require('natural');
const stemmer = natural.PorterStemmerDe;
console.log(stemmer.stem("grüne"));

Output: grun

Expected behavior

Output grün

getriebesand avatar Feb 11 '25 13:02 getriebesand