The Wayback Machine - https://web.archive.org/web/20201114130305/https://spacy.io/api/phrasematcher/

Pipeline

PhraseMatcher

classv2
Match sequences of tokens, based on documents

The PhraseMatcher lets you efficiently match large terminology lists. While the Matcher lets you match sequences based on lists of token descriptions, the PhraseMatcher accepts match patterns in the form of Doc objects.

PhraseMatcher.__init__ method

Create the rule-based PhraseMatcher. Setting a different attr to match on will change the token attributes that will be compared to determine a match. By default, the incoming Doc is checked for sequences of tokens with the same ORTH value, i.e. the verbatim token text. Matching on the attribute LOWER will result in case-insensitive matching, since only the lowercase token texts are compared. In theory, it’s also possible to match on sequences of the same part-of-speech tags or dependency labels.

If validate=True is set, additional validation is performed when pattern are added. At the moment, it will check whether a Doc has attributes assigned that aren’t necessary to produce the matches (for example, part-of-speech tags if the PhraseMatcher matches on the token text). Since this can often lead to significantly worse performance when creating the pattern, a UserWarning will be shown.

NameTypeDescription
vocabVocabThe vocabulary object, which must be shared with the documents the matcher will operate on.
max_lengthintDeprecated argument - the PhraseMatcher does not have a phrase length limit anymore.
attr v2.1int / unicodeThe token attribute to match on. Defaults to ORTH, i.e. the verbatim token text.
validate v2.1boolValidate patterns added to the matcher.

PhraseMatcher.__call__ method

Find all token sequences matching the supplied patterns on the Doc.

NameTypeDescription
docDocThe document to match over.

PhraseMatcher.pipe method

Match a stream of documents, yielding them in turn.

NameTypeDescription
docsiterableA stream of documents.
batch_sizeintThe number of documents to accumulate into a working set.

PhraseMatcher.__len__ method

Get the number of rules added to the matcher. Note that this only returns the number of rules (identical with the number of IDs), not the number of individual patterns.

NameTypeDescription

PhraseMatcher.__contains__ method

Check whether the matcher contains rules for a match ID.

NameTypeDescription
keyunicodeThe match ID.

PhraseMatcher.add method

Add a rule to the matcher, consisting of an ID key, one or more patterns, and a callback function to act on the matches. The callback function will receive the arguments matcher, doc, i and matches. If a pattern already exists for the given ID, the patterns will be extended. An on_match callback will be overwritten.

NameTypeDescription
match_idunicodeAn ID for the thing you’re matching.
on_matchcallable or NoneCallback function to act on matches. Takes the arguments matcher, doc, i and matches.
*docsDocDoc objects of the phrases to match.

PhraseMatcher.remove methodv2.2

Remove a rule from the matcher by match ID. A KeyError is raised if the key does not exist.

NameTypeDescription
keyunicodeThe ID of the match rule.