You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
def GenerateNgrams(words, ngrams):
nglist = []
for ng in ngrams:
for word in words:
nglist.extend([word[n:n+ng] for n in range(len(word)-ng+1)])
return ngli
maybe it should like following
def GenerateNgrams(words, ngrams):
nglist = []
for ng in ngrams:
nglist.extend(''.join([words[n:n+ng]) for n in range(len(words)-ng+1)])
return ngli
The text was updated successfully, but these errors were encountered:
maybe it should like following
The text was updated successfully, but these errors were encountered: