leondz/wnut_17
Updated • 3.47k • 19
How to use masterkristall/my_awesome_wnut_model with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("token-classification", model="masterkristall/my_awesome_wnut_model") # Load model directly
from transformers import AutoTokenizer, AutoModelForTokenClassification
tokenizer = AutoTokenizer.from_pretrained("masterkristall/my_awesome_wnut_model")
model = AutoModelForTokenClassification.from_pretrained("masterkristall/my_awesome_wnut_model", device_map="auto")This model is a fine-tuned version of distilbert-base-uncased on the wnut_17 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 |
|---|---|---|---|---|---|---|---|
| No log | 1.0 | 213 | 0.2765 | 0.5449 | 0.2586 | 0.3507 | 0.9393 |
| No log | 2.0 | 426 | 0.2664 | 0.5736 | 0.3429 | 0.4292 | 0.9437 |
| 0.1794 | 3.0 | 639 | 0.2708 | 0.5464 | 0.3494 | 0.4262 | 0.9448 |
Base model
distilbert/distilbert-base-uncased