20

我刚开始使用斯坦福解析器,但我不太了解标签。这可能是一个愚蠢的问题,但谁能告诉我 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)))))
    (. ?)))

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

4

2 回答 2

31

该参考资料看起来有一个广泛的列表 - 不确定它是否完整。

具体来说,它列出了您要询问的内容:

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.
于 2012-10-23T10:35:33.643 回答
-1

要查看整个列表,只需打印解析器的 tagIndex

    LexicalizedParser lp =  LexicalizedParser.loadModel();
    System.out.println(lp.tagIndex); // print the tag index
于 2016-09-28T20:49:03.533 回答