unimelb-nlp/wikiann
Viewer • Updated • 2M • 15.8k • 122
How to use Falah/arabic2023_ner_model with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("token-classification", model="Falah/arabic2023_ner_model") # Load model directly
from transformers import AutoTokenizer, AutoModelForTokenClassification
tokenizer = AutoTokenizer.from_pretrained("Falah/arabic2023_ner_model")
model = AutoModelForTokenClassification.from_pretrained("Falah/arabic2023_ner_model")This model is a fine-tuned version of distilbert-base-uncased on the wikiann dataset. It achieves the following results on the evaluation set:
More information needed
More information needed
More information needed
The following hyperparameters were used during training:
| Training Loss | Epoch | Step | Validation Loss | Precision | Recall | F1 | Accuracy |
|---|---|---|---|---|---|---|---|
| 0.1594 | 1.0 | 1250 | 0.4149 | 0.8145 | 0.8133 | 0.8139 | 0.8974 |
| 0.116 | 2.0 | 2500 | 0.3950 | 0.8255 | 0.8313 | 0.8284 | 0.9048 |