我在nltk中有这个简单的分块示例。
我的数据:
data = 'The little yellow dog will then walk to the Starbucks, where he will introduce them to Michael.'
...预处理......
data_tok = nltk.word_tokenize(data) #tokenisation
data_pos = nltk.pos_tag(data_tok) #POS tagging
CHUNKING:
cfg_1 = "CUSTOMCHUNK: {<VB><.*>*?<NNP>}" #should return `walk to the Starbucks`, etc.
chunker = nltk.RegexpParser(cfg_1)
data_chunked = chunker.parse(data_pos)
这返回(除了其他内容):(CUSTOMCHUNK walk/VB to/TO the/DT Starbucks/NNP)
,所以它做了我想要它做的事。
现在我的问题:我想切换到我的项目的spacy。我如何在spacy中做到这一点?
我来标记它(较粗糙的.pos
方法将为我做):
from spacy.en import English
parser = English()
parsed_sent = parser(u'The little yellow dog will then walk to the Starbucks, where')
def print_coarse_pos(token):
print(token, token.pos_)
for sentence in parsed_sent.sents:
for token in sentence:
print_coarse_pos(token)
...返回标签和令牌
The DET
little ADJ
yellow ADJ
dog NOUN
will VERB
then ADV
walk VERB
...
我怎样才能用自己的语法提取块?
答案 0 :(得分:5)
从https://github.com/spacy-io/spaCy/issues/342
逐字复制有几种方法可以解决这个问题。与RegexpParser
类最接近的功能是spaCy的Matcher
。但对于语法分块,我通常会使用依赖关系解析。例如,对于NPs分块,你有doc.noun_chunks
迭代器:
doc = nlp(text)
for np in doc.noun_chunks:
print(np.text)
这种方法的基本方式是这样的:
for token in doc:
if is_head_of_chunk(token)
chunk_start = token.left_edge.i
chunk_end = token.right_edge.i + 1
yield doc[chunk_start : chunk_end]
您可以根据需要定义假设的is_head_of
函数。您可以使用依赖解析可视化工具来查看语法注释方案,并找出要使用的标签:http://spacy.io/demos/displacy