The function bigrams from nltk is returning the following message,
even though nltk is imported and other functions from it are working. Any ideas? Thanks.
>>> import nltk
>>> nltk.download()
showing info http://www.nltk.org/nltk_data/
True
>>> from nltk import bigrams
>>> bigrams(['more', 'is', 'said', 'than', 'done'])
<generator object bigrams at 0x0000000002E64240>