ZihanWangKi/conllpp
Updated • 884 • 17
How to use wizardofchance/conllpp_NER with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("token-classification", model="wizardofchance/conllpp_NER") # Load model directly
from transformers import AutoTokenizer, AutoModelForTokenClassification
tokenizer = AutoTokenizer.from_pretrained("wizardofchance/conllpp_NER")
model = AutoModelForTokenClassification.from_pretrained("wizardofchance/conllpp_NER")This model is a fine-tuned version of distilbert/distilbert-base-uncased on the conllpp 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 | 439 | 0.0943 | 0.8399 | 0.8700 | 0.8547 | 0.9716 |
| 0.2003 | 2.0 | 878 | 0.0877 | 0.8584 | 0.8874 | 0.8726 | 0.9747 |
Base model
distilbert/distilbert-base-uncased