leondz/wnut_17
Updated • 3.93k • 19
How to use Tirendaz/my_awesome_ner_model with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("token-classification", model="Tirendaz/my_awesome_ner_model") # Load model directly
from transformers import AutoTokenizer, AutoModelForTokenClassification
tokenizer = AutoTokenizer.from_pretrained("Tirendaz/my_awesome_ner_model")
model = AutoModelForTokenClassification.from_pretrained("Tirendaz/my_awesome_ner_model")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 | 107 | 0.3166 | 0.1639 | 0.0093 | 0.0175 | 0.9275 |
| No log | 2.0 | 214 | 0.3042 | 0.4609 | 0.1585 | 0.2359 | 0.9349 |
Base model
distilbert/distilbert-base-uncased