NER for Latin
Trained using letters from the Bullinger collection, based on mbert.
How to use
import spacy
nlp = spacy.load('./enhg_pipeline')
doc = nlp('Norimberga in proximum quoddam Ulmensibus oppidulum Leypphaim sese contulit, certa spe recuperandae sedis, e qua nuper est detrusus.')
for ent in doc.ents:
print(ent.text, ent.label_)
# Output:
# Norimberga GEO
# Ulmensibus GEO
Evaluation
- F-Score: 0.8970679975
- Precision: 0.8860135551,
- Recall: 0.9084017688,
- Downloads last month
- 0
This model does not have enough activity to be deployed to Inference API (serverless) yet. Increase its social
visibility and check back later, or deploy to Inference Endpoints (dedicated)
instead.