leondz/wnut_17
Updated • 4.53k • 19
How to use StatsGary/token_classification_wnut with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("token-classification", model="StatsGary/token_classification_wnut") # Load model directly
from transformers import AutoTokenizer, AutoModelForTokenClassification
tokenizer = AutoTokenizer.from_pretrained("StatsGary/token_classification_wnut")
model = AutoModelForTokenClassification.from_pretrained("StatsGary/token_classification_wnut")This model is a fine-tuned version of bert-large-uncased on the wnut_17 dataset.
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.3717 | 0.6279 | 0.3707 | 0.4662 | 0.9481 |