Why am I not able to load and use below spacy pipeline properly?
I used available pipeline enn_core_web_lg and added concise_concepts in the pipeline, with some dummy NER data. Immediately after that if i try NER, it works. But when i try to save the whole thing and load later for use, i am not able to do so.
What I did:
import spacy
import concise_concepts
pipeline = spacy.load("en_core_web_lg") # available trained pipeline
data = {
"FRUIT": ["apple", "orange", "pear"],
"VEGETABLE": ["potato", "spinach", "tomato"]...