leondz/wnut_17
Updated • 5.44k • 19
How to use oyvindgrutle/distilbert-base-uncased-test2 with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("token-classification", model="oyvindgrutle/distilbert-base-uncased-test2") # Load model directly
from transformers import AutoTokenizer, AutoModelForTokenClassification
tokenizer = AutoTokenizer.from_pretrained("oyvindgrutle/distilbert-base-uncased-test2")
model = AutoModelForTokenClassification.from_pretrained("oyvindgrutle/distilbert-base-uncased-test2")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.2700 | 0.5102 | 0.3698 | 0.4288 | 0.9447 |
| No log | 2.0 | 426 | 0.2827 | 0.5687 | 0.3874 | 0.4609 | 0.9469 |
| 0.0553 | 3.0 | 639 | 0.2937 | 0.5410 | 0.3976 | 0.4583 | 0.9469 |