leondz/wnut_17
Updated • 4.12k • 19
How to use StatsGary/bert-large-ner-wnut-17 with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("token-classification", model="StatsGary/bert-large-ner-wnut-17") # Load model directly
from transformers import AutoTokenizer, AutoModelForTokenClassification
tokenizer = AutoTokenizer.from_pretrained("StatsGary/bert-large-ner-wnut-17")
model = AutoModelForTokenClassification.from_pretrained("StatsGary/bert-large-ner-wnut-17")This model is a fine-tuned version of bert-large-uncased 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.2551 | 0.6727 | 0.3105 | 0.4249 | 0.9446 |
| No log | 2.0 | 426 | 0.2521 | 0.6491 | 0.4235 | 0.5126 | 0.9510 |
| 0.1128 | 3.0 | 639 | 0.2851 | 0.6240 | 0.4245 | 0.5052 | 0.9504 |