什么"单词"拼写不正确"?

时间:2018-02-28 22:05:51

标签: maven pom.xml

这是错误: enter image description here 这是.pom文件:

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
             ))

1 个答案:

答案 0 :(得分:2)

这不是错误,只是一个警告,因为单词" java.version"在日食词典中不存在。

要禁用拼写检查,请转到:窗口 - >首选项,选择常规,编辑器,文本编辑器,拼写和禁用拼写检查。

我建议在Eclipse中使用Apache Maven时使用M2Eclipse