I'm trying to use the similar function in NLTK with python but it keeps returning 'No Matches', even when I put in a similar word that's in the sentence.
My code is here
from nltk.tokenize import word_tokenize
import nltk
raw = "Analyzing text to find common terms using Python and NLTK"
text = nltk.Text(raw)
text.similar('mutual')
Any ideas?