Views
No views yet
distilbert-base-multilingual-cased for Named Entity Recognition on Telugu, trained on the Naamapadam benchmark (Mhaske et al., ACL 2023).| Metric | Score |
|---|---|
| F1 | 0.7803 |
| Precision | 0.7827 |
| Recall | 0.7779 |
| Accuracy | 0.9389 |
distilbert-base-multilingual-casedO, B-PER, I-PER, B-ORG, I-ORG, B-LOC, I-LOC1from transformers import pipeline
2
3ner = pipeline(
4 "token-classification",
5 model="chandanaau/distilbert-telugu-ner",
6 aggregation_strategy="first",
7)
8
9text = "నరేంద్ర మోదీ న్యూ ఢిల్లీలో మాట్లాడారు"
10print(ner(text))1@inproceedings{mhaske-etal-2023-naamapadam,
2 title = "Naamapadam: A Large-Scale Named Entity Annotated Data for Indic Languages",
3 author = "Mhaske, Arnav and Kedia, Harshit and Doddapaneni, Sumanth and others",
4 booktitle = "ACL 2023",
5 year = "2023"
6}