def printConll(split_sentence_text):
doc = nlp(split_sentence_text)
for i, word in enumerate(doc):
if word.head == word:
head_idx = 0
else:
head_idx = word.head.i - sent[0].i + 1
print("%d\t%s\t%s\t%s\t%s\t%s\t%s"%(
i+1, # There's a word.i attr that's position in *doc*
word,
word.lemma_,
word.tag_, # Fine-grained tag
word.ent_type_,
str(head_idx),
word.dep_ # Relation
))
答案 0 :(得分:2)
这不是错误,只是一个警告,因为单词" java.version"在日食词典中不存在。
要禁用拼写检查,请转到:窗口 - >首选项,选择常规,编辑器,文本编辑器,拼写和禁用拼写检查。
我建议在Eclipse中使用Apache Maven时使用M2Eclipse