69一区二三区好的精华液,中文字幕无码av波多野吉衣,亚洲精品久久久久久无码色欲四季,日本不卡高字幕在线2019

Lesson 17----NLTK 句法分析
來源: 陳仕鴻/
廣東外語外貿大學
5150
2
0
2018-06-04

一、Chunking 句子分塊


Segmentation and Labeling at both the Token and Chunk Levels


noun phrase chunkingNP-chunking)名詞短語


import nltk


sentence = [("the", "DT"), ("little", "JJ"), ("yellow", "JJ"),("dog", "NN"), ("barked", "VBD"), ("at", "IN"),  ("the", "DT"), ("cat", "NN")]

grammar = "NP: {<DT>?<JJ>*<NN>}"


cp = nltk.RegexpParser(grammar)

result = cp.parse(sentence)

print(result)


result.draw()


----------------------------------------------------------

如果覺得上述對句子人式標注很麻煩,可以改為以下:

import nltk

sentence="the little dog baked at the cat"

words=nltk.word_tokenize(sentence)   #分詞

sent_tag=nltk.pos_tag(words)       #加標注

grammar = "NP: {<DT>?<JJ>*<NN>}"

cp = nltk.RegexpParser(grammar)

result = cp.parse(sent_tag)

print(result)

result.draw()



練習1:考慮下面的名詞短語如何表示。

another/DT sharp/JJ dive/NN trade/NN figures/NNS any/DT new/JJ policy/NN measures/NNS earlier/JJR stages/NNS Panamanian/JJ dictator/NN Manuel/NNP Noriega/NNP二、句子結構分析 1  句子嵌套   Usain Bolt broke the 100m recordb. The Jamaica Observer reported that Usain Bolt broke the 100m recordc. Andre said The Jamaica Observer reported that Usain Bolt broke the 100m recordd. I think Andre said the Jamaica Observer reported that Usain Bolt broke the 100m record    2 句子歧義 I shot an elephant in my pajamas.http://www.nltk.org/book/ch08.html groucho_grammar = nltk.CFG.fromstring(""" S -> NP VP PP -> P NP NP -> Det N | Det N PP | 'I' VP -> V NP | VP PP Det -> 'an' | 'my' N -> 'elephant' | 'pajamas' V -> 'shot' P -> 'in' """) sent = ['I', 'shot', 'an', 'elephant', 'in', 'my', 'pajamas'] parser = nltk.ChartParser(groucho_grammar) for tree in parser.parse(sent):     print(tree) 3   Context Free Grammar 上下文無關文法 (1)遞歸下降解析器 nltk.app.rdparser() (2)移進-歸約解析器 nltk.app.srparser()

登錄用戶可以查看和發表評論, 請前往  登錄 或  注冊
SCHOLAT.com 學者網
免責聲明 | 關于我們 | 聯系我們
聯系我們:
主站蜘蛛池模板: 宁城县| 昆明市| 屏山县| 扎鲁特旗| 西林县| 如皋市| 惠水县| 阳原县| 南皮县| 获嘉县| 西华县| 江口县| 吐鲁番市| 青冈县| 阆中市| 徐州市| 闸北区| 嫩江县| 中超| 尉犁县| 乃东县| 许昌市| 黑龙江省| 巴彦淖尔市| 屏南县| 丰宁| 习水县| 湘乡市| 阳城县| 改则县| 伊春市| 通许县| 疏附县| 东平县| 峨眉山市| 连云港市| 南皮县| 白山市| 沾化县| 天全县| 泊头市|