my code is like this
nlp = spacy.load("en_core_sci_lg") nlp.add_pipe("scispacy_linker", config={"resolve_abbreviations": True, "linker_name": "umls", "threshold": 0.85}, last=True)
The code costs much time. So i want to exclude some components which is not used in the scispacy_linker pipeline when load the "en_core_sci_lg".
I want to know which components are used in the scispacy_linker pipeline.
my code is like this
nlp = spacy.load("en_core_sci_lg") nlp.add_pipe("scispacy_linker", config={"resolve_abbreviations": True, "linker_name": "umls", "threshold": 0.85}, last=True)The code costs much time. So i want to exclude some components which is not used in the scispacy_linker pipeline when load the "en_core_sci_lg".
I want to know which components are used in the scispacy_linker pipeline.