您的位置:首页 > 其它

成分句法分析与依存句法分析

2017-11-22 08:51 204 查看
转载http://blog.csdn.net/flybirp07/article/details/44834853

转载http://blog.csdn.net/u014422406/article/details/53954530

句法分析 parse

成分句法分析 constituency parse 把句子组织成短语的形式



依存句法分析 dependency parse 揭示了句子中词的依赖关系



依存句法树能够根据成分句法树转换而来,但成分句法树不能通过依存树转化来。转换的规则是head-finding rules from Zhang and Clark 2008

A constituency parse tree breaks a text into sub-phrases. Non-terminals in the tree are types of phrases, the terminals are the words in the sentence, and the edges are unlabeled. For a simple sentence "John sees Bill", a constituency parse would be:

句子 >> 短语

                  Sentence

                     |

       +-------------+------------+

       |                          |

  Noun Phrase                Verb Phrase

       |                          |

     John                 +-------+--------+

                          |                |

                        Verb          Noun Phrase

                          |                |

                        sees              Bill

A dependency parse connects words according to their relationships. Each vertex in the tree represents a word, child nodes are words that are dependent on the parent, and edges are labeled by the relationship. A dependency parse of "John sees Bill", would be:

句子 >> 关系(a, b)

              sees

                |

        +--------------+

subject |              | object

        |              |

      John            Bill

You should use the parser type that gets you closest to your goal. If you are interested in sub-phrases within the sentence, you probably want the constituency parse. If you are interested in the dependency relationships between words, then you probably want
the dependency parse.

The Stanford parser can give you either. In fact, the way it really works is to always parse the sentence with the constituency parser, and then, if needed, it performs a deterministic (rule-based) transformation on the constituency parse tree to convert it
into a dependency tree.

More can be found here:
http://en.wikipedia.org/wiki/Phrase_structure_grammar http://en.wikipedia.org/wiki/Dependency_grammar
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: