Spacy - Save custom pipeline
问题 I'm trying to integrate a custom PhraseMatcher() component into my nlp pipeline in a way that will allow me to load the custom Spacy model without having to re-add my custom components to a generic model on each load. How can I load a Spacy model containing custom pipeline components? I create the component, add it to my pipeline and save it with the following: import requests from spacy.lang.en import English from spacy.matcher import PhraseMatcher from spacy.tokens import Doc, Span, Token