Get startedGet started for free

Debugging patterns (1)

Why does this pattern not match the tokens "Silicon Valley" in the doc?

pattern = [{'LOWER': 'silicon'}, {'TEXT': ' '}, {'LOWER': 'valley'}]
doc = nlp("Can Silicon Valley workers rein in big tech from within?")

You can try it out in your IPython shell. The matcher with the added pattern and the doc are already created.

This exercise is part of the course

Advanced NLP with spaCy

View Course

Hands-on interactive exercise

Turn theory into action with one of our interactive exercises

Start Exercise