leondz/wnut_17
Updated • 5.38k • 19
How to use tnavin/distilbert-base-uncased-finetuned-ner with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("token-classification", model="tnavin/distilbert-base-uncased-finetuned-ner") # Load model directly
from transformers import AutoTokenizer, AutoModelForTokenClassification
tokenizer = AutoTokenizer.from_pretrained("tnavin/distilbert-base-uncased-finetuned-ner")
model = AutoModelForTokenClassification.from_pretrained("tnavin/distilbert-base-uncased-finetuned-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.3469 | 0.5480 | 0.2814 | 0.3718 | 0.9193 |
| No log | 2.0 | 426 | 0.3135 | 0.5909 | 0.3903 | 0.4701 | 0.9281 |
| 0.1903 | 3.0 | 639 | 0.3202 | 0.5900 | 0.4118 | 0.4850 | 0.9304 |