Views
No views yet
| Training Loss | Epoch | Step | Validation Loss | Precision | Recall | F1 | Accuracy |
|---|---|---|---|---|---|---|---|
| 0.1892 | 1.0 | 1250 | 0.2003 | 0.8653 | 0.8677 | 0.8665 | 0.9430 |
| 0.123 | 2.0 | 2500 | 0.1912 | 0.8802 | 0.8826 | 0.8814 | 0.9493 |
| 0.0809 | 3.0 | 3750 | 0.1942 | 0.8928 | 0.8969 | 0.8948 | 0.9539 |
1from transformers import pipeline
2
3# Load the NER pipeline
4nlp = pipeline("ner", model="Tevfik-istanbullu/camelbert-ner-arabic")
5
6# Example text
7text = "يعمل محمد في شركة جوجل في دبي"
8results = nlp(text)
9print(results)
10