I am using spaCy for my project. It works magnificiently, only it is a bit time-consuming. I am looking for ways to reduce processing time. I have realized that calling nlp on my text will perform many operations: tokenization, ner, ... (doc here: https://spacy.io/usage/spacy-101#pipelines) ; while in some parts of my code, I only need to perform e.g. vectorization. Is it possible to apply only some components of the pipeline to reduce processing time?