unimelb-nlp/wikiann
Viewer • Updated • 2M • 43k • 121
How to use ben-epstein/output with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("token-classification", model="ben-epstein/output") # Load model directly
from transformers import AutoTokenizer, AutoModelForTokenClassification
tokenizer = AutoTokenizer.from_pretrained("ben-epstein/output")
model = AutoModelForTokenClassification.from_pretrained("ben-epstein/output")This model is a fine-tuned version of distilbert-base-cased 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.3137 | 1.0 | 1250 | 0.2685 | 0.7716 | 0.8027 | 0.7868 | 0.9181 |
| 0.2199 | 2.0 | 2500 | 0.2526 | 0.7765 | 0.8132 | 0.7944 | 0.9220 |
| 0.1613 | 3.0 | 3750 | 0.2549 | 0.7963 | 0.8242 | 0.8100 | 0.9262 |
Base model
distilbert/distilbert-base-cased