|
|
--- |
|
|
{} |
|
|
--- |
|
|
library_name: transformers |
|
|
tags: |
|
|
- amharic |
|
|
- ner |
|
|
- token-classification |
|
|
- xlm-roberta |
|
|
--- |
|
|
|
|
|
# Ethio NER Model |
|
|
|
|
|
Fine-tuned Amharic Named Entity Recognition (NER) model based on XLM-Roberta. Built for extracting entities from Telegram-based e-commerce messages. |
|
|
|
|
|
## Usage |
|
|
|
|
|
```python |
|
|
from transformers import AutoTokenizer, AutoModelForTokenClassification, pipeline |
|
|
|
|
|
tokenizer = AutoTokenizer.from_pretrained("rufeshe/ethio-ner-model") |
|
|
model = AutoModelForTokenClassification.from_pretrained("rufeshe/ethio-ner-model") |
|
|
|
|
|
nlp = pipeline("ner", model=model, tokenizer=tokenizer, aggregation_strategy="simple") |
|
|
|
|
|
text = "α αα΅ααα΅ α α α²α΅ α²α΅α°α αα α α³α²α΅ αα΄αα½α α αα£α’" |
|
|
print(nlp(text)) |
|
|
Training Details |
|
|
Base model: xlm-roberta-base |
|
|
|
|
|
Data: Cleaned Telegram messages from Ethiopian e-commerce channels |
|
|
|
|
|
Framework: π€ Transformers |
|
|
|
|
|
Metrics: F1 score, Precision, Recall |
|
|
|
|
|
Model Card |
|
|
Developed by: [Your Name] |
|
|
Shared by: [Your Organization] |
|
|
License: Apache-2.0 |
|
|
Language: Amharic (am) |
|
|
|
|
|
Contact |
|
|
For feedback or questions, reach out at zerufeshetu121@gmail.com |