leondz/wnut_17
Updated • 5.28k • 19
How to use ntmanh90/distilbert_token_classification_cus with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("token-classification", model="ntmanh90/distilbert_token_classification_cus") # Load model directly
from transformers import AutoTokenizer, AutoModelForTokenClassification
tokenizer = AutoTokenizer.from_pretrained("ntmanh90/distilbert_token_classification_cus")
model = AutoModelForTokenClassification.from_pretrained("ntmanh90/distilbert_token_classification_cus")This model is a fine-tuned version of distilbert/distilbert-base-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.2815 | 0.5675 | 0.2651 | 0.3613 | 0.9385 |
| No log | 2.0 | 426 | 0.2714 | 0.5724 | 0.3262 | 0.4156 | 0.9419 |
Base model
distilbert/distilbert-base-uncased