leondz/wnut_17
Updated • 4.13k • 19
How to use mircoboettcher/bert-wnut17-optimized with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("token-classification", model="mircoboettcher/bert-wnut17-optimized") # Load model directly
from transformers import AutoTokenizer, AutoModelForTokenClassification
tokenizer = AutoTokenizer.from_pretrained("mircoboettcher/bert-wnut17-optimized")
model = AutoModelForTokenClassification.from_pretrained("mircoboettcher/bert-wnut17-optimized")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.2365 | 0.5265 | 0.4235 | 0.4694 | 0.9478 |
| No log | 2.0 | 426 | 0.2692 | 0.5710 | 0.3689 | 0.4482 | 0.9480 |
| 0.2086 | 3.0 | 639 | 0.2901 | 0.5795 | 0.3818 | 0.4603 | 0.9485 |
Base model
dslim/bert-base-NER