leondz/wnut_17
Updated • 5.44k • 19
How to use AlanRobotics/my_awesome_wnut_model with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("token-classification", model="AlanRobotics/my_awesome_wnut_model") # Load model directly
from transformers import AutoTokenizer, AutoModelForTokenClassification
tokenizer = AutoTokenizer.from_pretrained("AlanRobotics/my_awesome_wnut_model")
model = AutoModelForTokenClassification.from_pretrained("AlanRobotics/my_awesome_wnut_model")This model is a fine-tuned version of distilbert-base-uncased on the wnut_17 dataset.
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 | 0.0141 | 3 | 1.9691 | 0.0327 | 0.0306 | 0.0316 | 0.8881 |
Base model
distilbert/distilbert-base-uncased