我正在编写一个程序:
该程序没有产生任何错误。但是,它不返回任何东西。如果你看到我做错了什么,请告诉我。
这是我的计划的相关部分:
tagger = treetaggerwrapper.TreeTagger(TAGLANG = 'en')
tagged_text = tagger.tag_text(text)
#tags the text
nltk_text = nltk.Text(tagged_text)
bigram_list = list(bigrams(nltk_text))
for (w1, t1), (w2, t2) in nltk.bigrams(bigram_list):
if t1.startswith('DT') and t2.startswith('NN') :
p.pprint(w1, w2)
#identifies instances of 'DT' followed by 'NN'
else:
print('No matches found')`