leondz/wnut_17
Updated • 3.03k • 19
How to use flavioaos/my_awesome_wnut_model_AI with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("token-classification", model="flavioaos/my_awesome_wnut_model_AI") # Load model directly
from transformers import AutoTokenizer, AutoModelForTokenClassification
tokenizer = AutoTokenizer.from_pretrained("flavioaos/my_awesome_wnut_model_AI")
model = AutoModelForTokenClassification.from_pretrained("flavioaos/my_awesome_wnut_model_AI", 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.2792 | 0.4409 | 0.2419 | 0.3124 | 0.9378 |
| No log | 2.0 | 426 | 0.2686 | 0.5292 | 0.3105 | 0.3914 | 0.9413 |
Base model
distilbert/distilbert-base-uncased