Using the Matcher
Let's try spaCy's rule-based Matcher
. You'll be using the example from the previous exercise and write a pattern that can match the phrase "iPhone X" in the text. The nlp
object and a processed doc
are already available.
Diese Übung ist Teil des Kurses
Advanced NLP with spaCy
Interaktive Übung
Versuche dich an dieser Übung, indem du diesen Beispielcode vervollständigst.
# Import the Matcher
from spacy.____ import ____
# Initialize the Matcher with the shared vocabulary
matcher = ____(____.____)