leondz/wnut_17
Updated • 4.23k • 19
How to use jonastokoliu/token_classification_finetune with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("token-classification", model="jonastokoliu/token_classification_finetune") # Load model directly
from transformers import AutoTokenizer, AutoModelForTokenClassification
tokenizer = AutoTokenizer.from_pretrained("jonastokoliu/token_classification_finetune")
model = AutoModelForTokenClassification.from_pretrained("jonastokoliu/token_classification_finetune")This model is a fine-tuned version of albert-base-v2 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 | 107 | 0.2573 | 0.6011 | 0.3003 | 0.4005 | 0.9409 |
| No log | 2.0 | 214 | 0.2489 | 0.5760 | 0.3513 | 0.4364 | 0.9444 |