leondz/wnut_17
Updated • 3.28k • 19
How to use soroushbn/my_awesome_wnut_model with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("token-classification", model="soroushbn/my_awesome_wnut_model") # Load model directly
from transformers import AutoTokenizer, AutoModelForTokenClassification
tokenizer = AutoTokenizer.from_pretrained("soroushbn/my_awesome_wnut_model")
model = AutoModelForTokenClassification.from_pretrained("soroushbn/my_awesome_wnut_model")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.2814 | 0.5418 | 0.2400 | 0.3327 | 0.9374 |
| No log | 2.0 | 426 | 0.2684 | 0.5707 | 0.3179 | 0.4083 | 0.9413 |
Base model
distilbert/distilbert-base-uncased