inception-project / inception

INCEpTION provides a semantic annotation platform offering intelligent annotation assistance and knowledge management.
https://inception-project.github.io
Apache License 2.0
602 stars 153 forks source link

Why is there "Error: NO LABEL"? #4001

Closed fishfree closed 1 year ago

fishfree commented 1 year ago

INCEpTION -- 27.3 After using the inception-external-recommender spacy_ner, it always shows "Error: NO LABEL" as the attached screenshot.

image image image

reckart commented 1 year ago

The error comes from there being a value LOC in the identifier feature - this is not a valid URI and it cannot be resolved using any knowledge base in the project. Thus you see the error.

Values such as the entity categories predicted by spacy (LOC, ORG, ...) would need to go into a string feature like value.

Maybe you had configured your classifier to predict identifier before?

fishfree commented 1 year ago

Thank you for your explanation!