- I added a new entity called "orgName" to en_core_web_lg using https://spacy.io/usage/training#example-new-entity-type
- All my training data (26k sentences) have the "orgName" labeled in them.
- To deal with the catastrophic forgetting problem, I ran en_core_web_lg on those 26k raw sentences and added the ORG, PROD, FAC, etc. entities as labels and not face the colliding entities, I created duplicates. So, for a sentence A which was labeled by "orgName", I created a duplicate A2 which has ORG, PROD, FAC, etc. ending up with about 52k sentences.
- I trained using 100 iterations.
Now, the problem is that testing the model even on the training sentences, it's not showing the ORG, PROD, FAC, etc. but only showing "orgName".
Where do you think the problem is?