leondz/wnut_17
Updated • 4.12k • 19
How to use anyuanay/my_finetuned_wnut_model_1012 with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("token-classification", model="anyuanay/my_finetuned_wnut_model_1012") # Load model directly
from transformers import AutoTokenizer, AutoModelForTokenClassification
tokenizer = AutoTokenizer.from_pretrained("anyuanay/my_finetuned_wnut_model_1012")
model = AutoModelForTokenClassification.from_pretrained("anyuanay/my_finetuned_wnut_model_1012")This model is a fine-tuned version of dslim/bert-base-NER 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.2657 | 0.5157 | 0.3967 | 0.4484 | 0.9468 |
| No log | 2.0 | 426 | 0.2940 | 0.5479 | 0.3920 | 0.4571 | 0.9487 |
Base model
dslim/bert-base-NER