【发布时间】:2020-09-12 23:55:43
【问题描述】:
我正在尝试关注线程 (How to extract subjects in a sentence and their respective dependent phrases?)。我还想从文本中提取主题及其依赖项。
import spacy
from textpipeliner import PipelineEngine, Context
from textpipeliner.pipes import *
text = 'No Offline Maps! It used to have offline maps but they disappeared. It now has a menu option to watch a video in exchange for maps but it never downloads the map. Makes the app useless to me.'
pipes_structure = [
SequencePipe([
FindTokensPipe("VERB/nsubj/*"),
NamedEntityFilterPipe(),
NamedEntityExtractorPipe()
]),
FindTokensPipe("VERB"),
AnyPipe([
SequencePipe([
FindTokensPipe("VBD/dobj/NNP"),
AggregatePipe([
NamedEntityFilterPipe("GPE"),
NamedEntityFilterPipe("PERSON")
]),
NamedEntityExtractorPipe()
]),
SequencePipe([
FindTokensPipe("VBD/**/*/pobj/NNP"),
AggregatePipe([
NamedEntityFilterPipe("LOC"),
NamedEntityFilterPipe("PERSON")
]),
NamedEntityExtractorPipe()
])
])
]
engine = PipelineEngine(pipes_structure, Context(text), [0, 1, 2])
engine.process()
当我运行上面的代码时,它会抛出以下错误:
---------------------------------------------------------------------------
AttributeError Traceback (most recent call last)
<ipython-input-22-5f5a5c9e8e51> in <module>()
----> 1 engine = PipelineEngine(pipes_structure, Context(text), [0, 1, 2])
2 engine.process()
~/anaconda3/lib/python3.6/site-packages/textpipeliner/context.py in __init__(self, doc)
4 self._current_sent_idx = -1
5 self._paragraph = self._sents[0:9]
----> 6 for s in doc.sents:
7 self._sents.append(s)
8 self.doc = doc
AttributeError: 'str' object has no attribute 'sents'
我不确定我在哪里犯了错误。谁能帮忙解决这个问题?
【问题讨论】: