Cistem-Stemmer
Sat 17 May 2025
title: "Cistem Stemmer" author: "Rj" date: 2019-04-21 description: "-" type: technical_note draft: false
from nltk.stem.cistem import Cistem
c_stemmer = Cistem()
print(c_stemmer.stem("filtering"))
filtering
print(c_stemmer.segment("filtering"))
('filtering', '')
print(c_stemmer.segment("Ausgefeiltere"))
('ausgefeilt', 'ere')
- segment method will return both the stem and the rest that was removed at the end
Score: 5
Category: textprocessing