I want to use the catalan stemmer provided in here: http://snowball.tartarus.org/algorithms/catalan/stemmer.html
However, when I do:
from nltk.stem.snowball import SnowballStemmer
stemmer = SnowballStemmer("catalan")
it says:
the language Catalan is not supported
could anybody help me? what am I doing wrong?
for Spanish it does work when I type:
from nltk.stem.snowball import SnowballStemmer
stemmer = SnowballStemmer("spanish")
Many thanks!