【问题标题】:Spacy Regex Phrase Matcher in PythonPython中的Spacy正则表达式短语匹配器
【发布时间】:2021-08-17 06:58:37
【问题描述】:

在大型文本语料库中,我有兴趣提取句子中某处具有(动词-名词)或(形容词-名词)特定列表的每个句子。我有一个很长的清单,但这里有一个示例。在我的 MWE 中,我试图用“write/wrote/writing/writes”和“book/s”提取句子。我有大约 30 对这样的词。

这是我尝试过的,但它没有捕捉到大部分句子:

import spacy
nlp = spacy.load('en_core_web_sm')
from spacy.matcher import Matcher
matcher = Matcher(nlp.vocab)

doc = nlp(u'Graham Greene is his favorite author. He wrote his first book when he was a hundred and fifty years old.\
While writing this book, he had to fend off aliens and dinosaurs. Greene\'s second book might not have been written by him. \
Greene\'s cat in its deathbed testimony alleged that it was the original writer of the book. The fact that plot of the book revolves around \
rats conquering the world, lends credence to the idea that only a cat could have been the true writer of such an inane book.')

matcher = Matcher(nlp.vocab)
pattern1 = [{"LEMMA": "write"},{"TEXT": {"REGEX": ".+"}},{"LEMMA": "book"}]
matcher.add("testy", None, pattern)

for sent in doc.sents:
    if matcher(nlp(sent.lemma_)):
        print(sent.text)

不幸的是,我只得到了一场比赛:

“在写这本书时,他必须抵御外星人和恐龙。”

然而,我也希望得到“他写了他的第一本书”这句话。其他的书都把writer作为名词,好是不匹配。

【问题讨论】:

    标签: python regex spacy match-phrase


    【解决方案1】:

    问题在于,在 Matcher 中,默认情况下,模式中的每个字典都对应于 恰好一个标记。所以你的正则表达式不匹配任何数量的字符,它匹配任何一个标记,这不是你想要的。

    要获得您想要的,您可以使用OP 值来指定您要匹配任意数量的令牌。请参阅文档中的 operators or quantifiers section

    但是,鉴于您的问题,您可能希望实际使用依赖匹配器,所以我重写了您的代码以使用它。试试这个:

    import spacy
    nlp = spacy.load('en_core_web_sm')
    from spacy.matcher import Matcher
    matcher = Matcher(nlp.vocab)
    
    doc = nlp("""
    Graham Greene is his favorite author. He wrote his first book when he was a hundred and fifty years old.
    While writing this book, he had to fend off aliens and dinosaurs. Greene's second book might not have been written by him. 
    Greene's cat in its deathbed testimony alleged that it was the original writer of the book. The fact that plot of the book revolves around 
    rats conquering the world, lends credence to the idea that only a cat could have been the true writer of such an inane book.""")
    
    matcher = Matcher(nlp.vocab)
    pattern = [{"LEMMA": "write"},{"OP": "*"},{"LEMMA": "book"}]
    matcher.add("testy", [pattern])
    
    print("----- Using Matcher -----")
    for sent in doc.sents:
        if matcher(sent):
            print(sent.text)
    
    print("----- Using Dependency Matcher -----")
    
    deppattern = [
            {"RIGHT_ID": "wrote", "RIGHT_ATTRS": {"LEMMA": "write"}},
            {"LEFT_ID": "wrote", "REL_OP": ">", "RIGHT_ID": "book", 
                "RIGHT_ATTRS": {"LEMMA": "book"}}
            ]
    
    from spacy.matcher import DependencyMatcher
    
    dmatcher = DependencyMatcher(nlp.vocab)
    
    dmatcher.add("BOOK", [deppattern])
    
    for _, (start, end) in dmatcher(doc):
        print(doc[start].sent)
    

    另一件不太重要的事情 - 你调用匹配器的方式有点奇怪。您可以传递匹配器 Docs 或 Spans,但它们绝对应该是自然文本,因此在句子上调用 .lemma_ 并根据您的情况创建一个新的文档,但通常应该避免。

    【讨论】:

    • 非常感谢您的回答。现在在 google 上阅读 DependencyMatcher。感谢您向我介绍它。但是,当我运行您的代码时,出现以下错误:“[E098] 指定的模式无效:需要 SPEC 和 PATTERN。”
    • 听起来您正在使用 spaCy v2。我的代码是为 v3 编写的,我建议您升级 - v2 不支持依赖匹配器。
    • 是的,我的 spacy 是 2.3.5,我会升级。对于代码,我尝试了这个并且它有效。 deppattern = [ {'SPEC' : {"NODE_NAME": "wrote"}, "PATTERN":{"LEMMA": "write"}}, # {'SPEC' : {"NODE_NAME": "book"}, " PATTERN":{"LEMMA": "write"}}, {"SPEC": {"NBOR_NAME": "write", "NBOR_RELOP": ">", "NODE_NAME": "book"}, "PATTERN": { "LEMMA": "book"}} ] 谢谢!
    • 快速问题:如果不是“写 > 书”我有“草稿 > 博士论文”或“写 > 裁判报告”或“准备 > 一些长短语”,如何更改依赖模式代码.基本上,当右边的从属词不是一个词而是一个短语,在简单的英语中可能不一定有意义?
    • 这取决于依赖解析的样子。合并名词块可能会更简单,但我建议您查看目标句子的依赖解析并弄清楚如何分解它。
    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2020-08-28
    • 1970-01-01
    • 1970-01-01
    • 2012-07-03
    • 1970-01-01
    相关资源
    最近更新 更多