What do spaCy's part-of-speech and dependency tags mean?

后端 未结 4 1940
时光取名叫无心
时光取名叫无心 2021-01-30 02:50

spaCy tags up each of the Tokens in a Document with a part of speech (in two different formats, one stored in the pos and pos_

4条回答
  •  感情败类
    2021-01-30 03:15

    Just a quick tip about getting the detail meaning of the short forms. You can use explain method like following:

    spacy.explain('pobj')
    

    which will give you output like:

    'object of preposition'
    

提交回复
热议问题