leondz/wnut_17
Updated • 4.52k • 19
How to use Gladiator/bert-large-uncased_ner_wnut_17 with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("token-classification", model="Gladiator/bert-large-uncased_ner_wnut_17") # Load model directly
from transformers import AutoTokenizer, AutoModelForTokenClassification
tokenizer = AutoTokenizer.from_pretrained("Gladiator/bert-large-uncased_ner_wnut_17")
model = AutoModelForTokenClassification.from_pretrained("Gladiator/bert-large-uncased_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.2143 | 0.6353 | 0.4605 | 0.5340 | 0.9490 |
| No log | 2.0 | 426 | 0.2299 | 0.7322 | 0.5036 | 0.5967 | 0.9556 |
| 0.1489 | 3.0 | 639 | 0.2137 | 0.6583 | 0.5945 | 0.6248 | 0.9603 |
| 0.1489 | 4.0 | 852 | 0.2494 | 0.7035 | 0.5789 | 0.6352 | 0.9604 |
| 0.0268 | 5.0 | 1065 | 0.2516 | 0.7053 | 0.5754 | 0.6337 | 0.9603 |