spaCy Annotation Tool — V2

Manivannan Murugavel
1 min readNov 25, 2020

--

Resolved the bug in v1.

This annotation tool mainly focused on the bug number #6 from the github issue.

The bug is when you annotate the same text from the para which is occurred more than two times, the annotation would be take the same index values for all text.

For example, the place name is India is occurred more than two times in the para. You are annotate the place name in the all places from the para but the annotation would be take the same index values for all place name India.

Example:

I am in India and the India is the most largest country in the world.

Annotation Output:

[(8, 13, Place_Name), (8, 13, Place_Name)]

This is the bug in the previous version of spacy annotation tool.

Now the spacy v2 is released and the bug is resolved.

Github Link: https://github.com/ManivannanMurugavel/spacy-ner-annotator

No need Installation:
https://manivannanmurugavel.github.io/annotating-tool/spacy-ner-annotator/

--

--