leondz/wnut_17
Updated • 3.38k • 19
How to use hcy5561/my_new_ner with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("token-classification", model="hcy5561/my_new_ner") # Load model directly
from transformers import AutoTokenizer, AutoModelForTokenClassification
tokenizer = AutoTokenizer.from_pretrained("hcy5561/my_new_ner")
model = AutoModelForTokenClassification.from_pretrained("hcy5561/my_new_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.2824 | 0.4392 | 0.2076 | 0.2819 | 0.9366 |
| No log | 2.0 | 426 | 0.2703 | 0.5368 | 0.3040 | 0.3882 | 0.9416 |
Base model
distilbert/distilbert-base-uncased