leondz/wnut_17
Updated • 5.55k • 19
How to use oyvindgrutle/ner-classification with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("token-classification", model="oyvindgrutle/ner-classification") # Load model directly
from transformers import AutoTokenizer, AutoModelForTokenClassification
tokenizer = AutoTokenizer.from_pretrained("oyvindgrutle/ner-classification")
model = AutoModelForTokenClassification.from_pretrained("oyvindgrutle/ner-classification")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.2797 | 0.5105 | 0.2484 | 0.3342 | 0.9386 |
| No log | 2.0 | 426 | 0.2636 | 0.5493 | 0.3151 | 0.4005 | 0.9430 |
| 0.1938 | 3.0 | 639 | 0.2699 | 0.5422 | 0.3336 | 0.4131 | 0.9439 |