Stanford Parser标签

Cry*_*sie 18 stanford-nlp

我刚刚开始使用Stanford Parser,但我不太了解这些标签.这可能是一个愚蠢的问题,但任何人都可以告诉我SBARQ和SQ标签代表什么,我在哪里可以找到它们的完整列表?我知道Penn Treebank的样子,但这些略有不同.

Sentence: What is the highest waterfall in the United States ?

(ROOT
  (SBARQ
    (WHNP (WP What))
    (SQ (VBZ is)
      (NP
        (NP (DT the) (JJS highest) (NN waterfall))
        (PP (IN in)
          (NP (DT the) (NNP United) (NNPS States)))))
    (. ?)))
Run Code Online (Sandbox Code Playgroud)

我查看了Stanford Parser网站并阅读了其中列出的一些期刊,但没有解释前面提到的标签.我找到了一本描述所有依赖项的手册,但它没有解释我在寻找什么.谢谢!

jam*_*jam 29

该引用看起来有一个广泛的列表 - 不确定它是否完整.

具体来说,它列出了您要问的问题:

SBARQ - Direct question introduced by a wh-word or a wh-phrase. Indirect 
        questions and relative clauses should be bracketed as SBAR, not SBARQ.
SQ    - Inverted yes/no question, or main clause of a wh-question, 
        following the wh-phrase in SBARQ.
Run Code Online (Sandbox Code Playgroud)

  • http://bulba.sdsu.edu/jeanette/thesis/PennTags.html似乎已脱机.我已将信息复制到https://gist.github.com/nlothian/9240750 (7认同)