developer-lunark/kaidol-ner-multilingual
110
π KAIdol NER Multilingual Model
This is a multilingual NER (Named Entity Recognition) model developed as part of the KAIdol Project. It is based on `Davlan/xlm-roberta-base-ner-hrl`, fine-tuned on the WikiAnn dataset for Korean (ko), English (en), Spanish (es), and Portuguese (pt).
π§ Model Details
- Base model:
Davlan/xlm-roberta-base-ner-hrl - NER Tags:
PER: PersonORG: OrganizationLOC: Location- Tokenizer: AutoTokenizer from base model
- Max length: 128 tokens
π Training Configuration
β Performance Summary
Performance onesandptwill be updated after evaluation. Korean performance is limited due to tokenization issues in WikiAnn.
π Usage Example
from transformers import AutoTokenizer, AutoModelForTokenClassification
model = AutoModelForTokenClassification.from_pretrained("developer-lunark/kaidol-ner-multilingual")
tokenizer = AutoTokenizer.from_pretrained("developer-lunark/kaidol-ner-multilingual")
tokens = tokenizer("Barack Obama naciΓ³ en HawΓ‘i.", return_tensors="pt")
output = model(**tokens)π§Ύ Label Mapping
{
'O': 0,
'B-PER': 1,
'I-PER': 2,
'B-ORG': 3,
'I-ORG': 4,
'B-LOC': 5,
'I-LOC': 6
}π License
MIT License
π¬ Contact
Developed by the [KAIdol νλ‘μ νΈ ν].
For questions or collaborations, contact: developer-lunark
