I have certain phrases in my corpus that I need spacy to disregard (with the hopes of avoiding overfitting). They're fairly simple regex formulas that I can also write in the format of Spacy's rule based matching like here.
I'd like the matches to be marked as stop words in my model before going on to the NER and TextCat pipes. I see how to write the matcher, but I'm not sure how to incorporate it into my model? Do I just add it as a pipe?
Thanks!