eriktks/conll2003
Updated • 41.1k • 166
How to use DeepBird/my-distilBERT-finetune-ner with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("token-classification", model="DeepBird/my-distilBERT-finetune-ner") # Load model directly
from transformers import AutoTokenizer, AutoModelForTokenClassification
tokenizer = AutoTokenizer.from_pretrained("DeepBird/my-distilBERT-finetune-ner")
model = AutoModelForTokenClassification.from_pretrained("DeepBird/my-distilBERT-finetune-ner")This model is a fine-tuned version of distilbert-base-uncased on the conll2003 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 |
|---|---|---|---|---|---|---|
| No log | 1.0 | 439 | 0.0547 | 0.9251 | 0.9291 | 0.9271 |
| 0.1451 | 2.0 | 878 | 0.0531 | 0.9315 | 0.9386 | 0.9350 |
| 0.0326 | 3.0 | 1317 | 0.0563 | 0.9377 | 0.9398 | 0.9387 |