I need to do some NER. I've found DeepPavlov library that does this.
Here is an example from docs:
from deeppavlov import configs, build_model
ner_model = build_model(configs.ner.ner_ontonotes, download=True)
ner_model(['Bob Ross lived in Florida'])
>>> [[['Bob', 'Ross', 'lived', 'in', 'Florida']], [['B-PERSON', 'I-PERSON', 'O', 'O', 'B-GPE']]]
I don't understand what all those tags mean. As I understood from the documentation, they are in the CoNLL 2003 NER Task format.
Can somebody point me at the list of possible tags with a description of CoNLL 2003 NER Task?