DataTurks-Engg / Entity-Recognition-In-Resumes-SpaCy

Automatic Summarization of Resumes with NER -> Evaluate resumes at a glance through Named Entity Recognition
https://medium.com/@dataturks/automatic-summarization-of-resumes-with-ner-8b97a5f562b
444 stars 215 forks source link

E24 error #9

Open isbkch opened 5 years ago

isbkch commented 5 years ago

I'm getting the following error when I execute train.py

ValueError: [E024] Could not find an optimal move to supervise the parser. Usually, this means the GoldParse was not correct. For example, are all labels added to the model?

Anything I should be doing differently?

rhlr commented 5 years ago

Did you solved it ?

yashkan27 commented 5 years ago

@rhlr I suppose you are doing the same part of resume parsing. Out of curiosity, I want to ask you a favor. How can we perform a semantic search on the resume data?

saipavanmeruga commented 5 years ago

I'm getting the following error when I execute train.py

ValueError: [E024] Could not find an optimal move to supervise the parser. Usually, this means the GoldParse was not correct. For example, are all labels added to the model?

Anything I should be doing differently?

For resolving the issue use spacy 2.0.18 version....

drishyamlabs commented 5 years ago

Installing spacy 2.0.18 resolved the issue for me. You can check your spacy version by using:

import spacy print(spacy.version) # spaCy version print(spacy.file) # location of spaCy installation

Follow this for more updates: https://github.com/explosion/spaCy/issues/3527