leondz/wnut_17
Updated • 3.38k • 19
How to use mircoboettcher/my_finetuned_wnut_model_1012 with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("token-classification", model="mircoboettcher/my_finetuned_wnut_model_1012") # Load model directly
from transformers import AutoTokenizer, AutoModelForTokenClassification
tokenizer = AutoTokenizer.from_pretrained("mircoboettcher/my_finetuned_wnut_model_1012")
model = AutoModelForTokenClassification.from_pretrained("mircoboettcher/my_finetuned_wnut_model_1012")This model is a fine-tuned version of dslim/bert-base-NER 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.3387 | 0.4596 | 0.4004 | 0.4279 | 0.9446 |
| No log | 2.0 | 426 | 0.3275 | 0.5357 | 0.3892 | 0.4509 | 0.9476 |
| 0.0285 | 3.0 | 639 | 0.3466 | 0.5545 | 0.3865 | 0.4555 | 0.9478 |
Base model
dslim/bert-base-NER