-1

SnowballStemmer を使用して Python でテキストをステミングしようとしていますが、うまくいきません。コードは次のとおりです。

import nltk
from nltk import SnowballStemmer

stem = SnowballStemmer("spanish")

def limpiar (texto):
  texto = texto.split()
  stemm = SnowballStemmer('spanish')
  for palabra in texto:
    palabra = stem.stem(palabra.lower())
    
  return texto

テキストを小文字で返しますが、ステミングは行いません

4

1 に答える 1