leondz/wnut_17
Updated • 2.22k • 19
How to use bobbyw/copilot_wnut_model with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("token-classification", model="bobbyw/copilot_wnut_model") # Load model directly
from transformers import AutoTokenizer, AutoModelForTokenClassification
tokenizer = AutoTokenizer.from_pretrained("bobbyw/copilot_wnut_model")
model = AutoModelForTokenClassification.from_pretrained("bobbyw/copilot_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.2743 | 0.6364 | 0.2725 | 0.3816 | 0.9401 |
| No log | 2.0 | 426 | 0.2598 | 0.5977 | 0.3346 | 0.4290 | 0.9445 |
| 0.1759 | 3.0 | 639 | 0.3063 | 0.6741 | 0.3086 | 0.4234 | 0.9445 |
| 0.1759 | 4.0 | 852 | 0.3097 | 0.5930 | 0.3605 | 0.4484 | 0.9463 |
| 0.0477 | 5.0 | 1065 | 0.2962 | 0.5558 | 0.4106 | 0.4723 | 0.9474 |
| 0.0477 | 6.0 | 1278 | 0.3218 | 0.5792 | 0.3967 | 0.4708 | 0.9474 |
| 0.0477 | 7.0 | 1491 | 0.3199 | 0.5595 | 0.4096 | 0.4730 | 0.9477 |
| 0.022 | 8.0 | 1704 | 0.3385 | 0.5938 | 0.4106 | 0.4855 | 0.9481 |
| 0.022 | 9.0 | 1917 | 0.3311 | 0.5687 | 0.4217 | 0.4843 | 0.9478 |
| 0.0123 | 10.0 | 2130 | 0.3448 | 0.5804 | 0.4115 | 0.4816 | 0.9484 |
Base model
distilbert/distilbert-base-uncased