leondz/wnut_17
Updated • 4.01k • 19
How to use dmargutierrez/distilbert-base-uncased-WNUT-ner with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("token-classification", model="dmargutierrez/distilbert-base-uncased-WNUT-ner") # Load model directly
from transformers import AutoTokenizer, AutoModelForTokenClassification
tokenizer = AutoTokenizer.from_pretrained("dmargutierrez/distilbert-base-uncased-WNUT-ner")
model = AutoModelForTokenClassification.from_pretrained("dmargutierrez/distilbert-base-uncased-WNUT-ner")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.2745 | 0.5099 | 0.2614 | 0.3456 | 0.9392 |
| No log | 2.0 | 426 | 0.2729 | 0.6080 | 0.3105 | 0.4110 | 0.9436 |
| 0.1878 | 3.0 | 639 | 0.2826 | 0.5769 | 0.3373 | 0.4257 | 0.9456 |
| 0.1878 | 4.0 | 852 | 0.2840 | 0.5440 | 0.3726 | 0.4422 | 0.9461 |
| 0.0465 | 5.0 | 1065 | 0.3286 | 0.5914 | 0.3568 | 0.4451 | 0.9461 |
| 0.0465 | 6.0 | 1278 | 0.3273 | 0.5693 | 0.3577 | 0.4394 | 0.9466 |
| 0.0465 | 7.0 | 1491 | 0.3462 | 0.5621 | 0.3818 | 0.4547 | 0.9469 |
| 0.0195 | 8.0 | 1704 | 0.3576 | 0.5442 | 0.3707 | 0.4410 | 0.9461 |
| 0.0195 | 9.0 | 1917 | 0.3563 | 0.5306 | 0.3698 | 0.4358 | 0.9460 |
| 0.0111 | 10.0 | 2130 | 0.3510 | 0.5362 | 0.3911 | 0.4523 | 0.9465 |