gpt4 book ai didi

nlp - 斯坦福 NLP 解析树格式

转载 作者:行者123 更新时间:2023-12-03 04:47:03 26 4
gpt4 key购买 nike

这可能是一个愚蠢的问题,但是如何迭代解析树作为 NLP 解析器(如斯坦福 NLP)的输出?它都是嵌套的括号,既不是 array 也不是 dictionary 或我使用过的任何其他集合类型。

(ROOT\n  (S\n    (PP (IN As)\n      (NP (DT an) (NN accountant)))\n    (NP (PRP I))\n    (VP (VBP want)\n      (S\n        (VP (TO to)\n          (VP (VB make)\n            (NP (DT a) (NN payment))))))))

最佳答案

斯坦福解析器的这种特殊输出格式称为“括号解析(树)”。它应该被解读为带有

的图表
  • 单词作为节点(例如 As、an、accountant)
  • 短语/从句作为标签(例如 S、NP、VP)
  • 边按层次结构链接
  • 通常解析的 TOP 或根节点是幻觉的 ROOT

(在这种情况下,您可以将其视为有向无环图(DAG),因为它是单向且非循环的)

有一些库可以读取括号解析,例如在 NLTKnltk.tree.Tree ( http://www.nltk.org/howto/tree.html ) 中:

>>> from nltk.tree import Tree
>>> output = '(ROOT (S (PP (IN As) (NP (DT an) (NN accountant))) (NP (PRP I)) (VP (VBP want) (S (VP (TO to) (VP (VB make) (NP (DT a) (NN payment))))))))'
>>> parsetree = Tree.fromstring(output)
>>> print parsetree
(ROOT
(S
(PP (IN As) (NP (DT an) (NN accountant)))
(NP (PRP I))
(VP
(VBP want)
(S (VP (TO to) (VP (VB make) (NP (DT a) (NN payment))))))))
>>> parsetree.pretty_print()
ROOT
|
S
______________________|________
| | VP
| | ________|____
| | | S
| | | |
| | | VP
| | | ________|___
PP | | | VP
___|___ | | | ________|___
| NP NP | | | NP
| ___|______ | | | | ___|_____
IN DT NN PRP VBP TO VB DT NN
| | | | | | | | |
As an accountant I want to make a payment

>>> parsetree.leaves()
['As', 'an', 'accountant', 'I', 'want', 'to', 'make', 'a', 'payment']

关于nlp - 斯坦福 NLP 解析树格式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34395127/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com