Source code for src.dackar.pipelines.PhraseEntityMatcher

# Copyright 2024, Battelle Energy Alliance, LLC  ALL RIGHTS RESERVED

from spacy.matcher import PhraseMatcher
from spacy.tokens import Span
from spacy.language import Language
# filter_spans is used to resolve the overlap issue in entities
# It gives primacy to longer spans (entities)
from spacy.util import filter_spans

import logging
[docs] logger = logging.getLogger(__name__)
@Language.factory("phrase_entity_matcher", default_config={"label": "ssc", "terms":["safety cage", "pump"], "asSpan":True})
[docs] def create_phrase_matcher_component(nlp, name, label, terms, asSpan): return PhraseEntityMatcher(nlp, label, terms, asSpan=asSpan)
[docs] class PhraseEntityMatcher(object): """ How to use it: .. code-block:: python from PhraseEntityMatcher import PhraseEntityMatcher nlp = spacy.load("en_core_web_sm") phraseList = ["safety cage", "cage", "pump"] pmatcher = PhraseEntityMatcher(nlp, 'ssc', phraseList) doc = nlp("The shaft deflection is causing the safety cage to rattle. Pumps not experiencing enough flow for the pumps to keep the check valves open during test. Pump not experiencing enough flow during test. Shaft made noise. Vibration seems like it is coming from the shaft.") updatedDoc = pmatcher(doc) or: .. code-block:: python nlp.add_pipe('phrase_entity_matcher', config={"label": "ssc", "terms":["safety cage", "pump"], "asSpan":True}) newDoc = nlp(doc.text) """ def __init__(self, nlp, label, terms, asSpan=True, callback=None): """ Args: label: str, the name/label for the patterns in terms terms: list, the phrase list, for example, phraseList = ["hello", "world"] """
[docs] self.name = 'phrase_entity_matcher'
[docs] self.matcher = PhraseMatcher(nlp.vocab, attr='LOWER')
[docs] patterns = [nlp.make_doc(text) for text in terms]
self.matcher.add(label, patterns, on_match=callback)
[docs] self.asSpan = asSpan
[docs] def __call__(self, doc): """ Args: doc: spacy.tokens.doc.Doc, the processed document using nlp pipelines """ matches = self.matcher(doc, as_spans=self.asSpan) spans = [] if not self.asSpan: for label, start, end in matches: span = Span(doc, start, end, label=label) spans.append(span) else: spans.extend(matches) doc.ents = filter_spans(list(doc.ents)+spans) return doc