leondz/wnut_17
Updated • 4.94k • 19
How to use ish97/bert-finetuned-ner-wnut17 with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("token-classification", model="ish97/bert-finetuned-ner-wnut17") # Load model directly
from transformers import AutoTokenizer, AutoModelForTokenClassification
tokenizer = AutoTokenizer.from_pretrained("ish97/bert-finetuned-ner-wnut17")
model = AutoModelForTokenClassification.from_pretrained("ish97/bert-finetuned-ner-wnut17")This model is a fine-tuned version of bert-base-cased 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 | 425 | 0.3361 | 0.5602 | 0.4007 | 0.4672 | 0.9172 |
| 0.2009 | 2.0 | 850 | 0.3617 | 0.5331 | 0.4043 | 0.4599 | 0.9201 |
| 0.0947 | 3.0 | 1275 | 0.3444 | 0.5301 | 0.4844 | 0.5062 | 0.9253 |