leondz/wnut_17
Updated • 3.93k • 19
How to use KrishnaSriIpsitMantri/bert-finetuned-ner with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("token-classification", model="KrishnaSriIpsitMantri/bert-finetuned-ner") # Load model directly
from transformers import AutoTokenizer, AutoModelForTokenClassification
tokenizer = AutoTokenizer.from_pretrained("KrishnaSriIpsitMantri/bert-finetuned-ner")
model = AutoModelForTokenClassification.from_pretrained("KrishnaSriIpsitMantri/bert-finetuned-ner")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 | 107 | 0.4278 | 0.5169 | 0.2380 | 0.3260 | 0.9021 |
| No log | 2.0 | 214 | 0.3786 | 0.6056 | 0.3600 | 0.4516 | 0.9135 |
| No log | 3.0 | 321 | 0.3691 | 0.5510 | 0.4007 | 0.4640 | 0.9174 |
Base model
google-bert/bert-base-cased