(*args, **kwargs)
| 289 | chngrams = character_ngrams |
| 290 | |
| 291 | def trigrams(*args, **kwargs): |
| 292 | kwargs["n"]=3; return character_ngrams(*args, **kwargs) |
| 293 | |
| 294 | #--- DOCUMENT -------------------------------------------------------------------------------------- |
| 295 | # A Document is a bag of words in which each word is a feature. |
nothing calls this directly
no test coverage detected
searching dependent graphs…