leondz/wnut_17
Updated • 4.42k • 19
How to use muhtasham/bert-tiny-finetuned-wnut17-ner with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("token-classification", model="muhtasham/bert-tiny-finetuned-wnut17-ner") # Load model directly
from transformers import AutoTokenizer, AutoModelForTokenClassification
tokenizer = AutoTokenizer.from_pretrained("muhtasham/bert-tiny-finetuned-wnut17-ner")
model = AutoModelForTokenClassification.from_pretrained("muhtasham/bert-tiny-finetuned-wnut17-ner")This model is a fine-tuned version of google/bert_uncased_L-2_H-128_A-2 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 | 27 | 1.1060 | 0.0 | 0.0 | 0.0 | 0.8961 |
| No log | 2.0 | 54 | 0.9075 | 0.0 | 0.0 | 0.0 | 0.8961 |
| No log | 3.0 | 81 | 0.7978 | 0.0 | 0.0 | 0.0 | 0.8961 |
| No log | 4.0 | 108 | 0.7333 | 0.0 | 0.0 | 0.0 | 0.8961 |
| No log | 5.0 | 135 | 0.6929 | 0.0 | 0.0 | 0.0 | 0.8961 |
| No log | 6.0 | 162 | 0.6661 | 0.0 | 0.0 | 0.0 | 0.8961 |
| No log | 7.0 | 189 | 0.6477 | 0.0 | 0.0 | 0.0 | 0.8961 |
| No log | 8.0 | 216 | 0.6346 | 0.0 | 0.0 | 0.0 | 0.8961 |
| No log | 9.0 | 243 | 0.6251 | 0.0 | 0.0 | 0.0 | 0.8961 |
| No log | 10.0 | 270 | 0.6182 | 0.0 | 0.0 | 0.0 | 0.8961 |
| No log | 11.0 | 297 | 0.6132 | 0.0 | 0.0 | 0.0 | 0.8961 |
| No log | 12.0 | 324 | 0.6097 | 0.0 | 0.0 | 0.0 | 0.8961 |
| No log | 13.0 | 351 | 0.6073 | 0.0 | 0.0 | 0.0 | 0.8961 |
| No log | 14.0 | 378 | 0.6059 | 0.0 | 0.0 | 0.0 | 0.8961 |
| No log | 15.0 | 405 | 0.6054 | 0.0 | 0.0 | 0.0 | 0.8961 |