15
n-grammi in pitone, quattro, cinque, sei grammi?
Sto cercando un modo per dividere un testo in n-grammi. Normalmente farei qualcosa del tipo: import nltk from nltk import bigrams string = "I really like python, it's pretty awesome." string_bigrams = bigrams(string) print string_bigrams Sono consapevole che nltk offre solo bigrammi e trigrammi, ma c'è un modo per dividere …