lhoestq/conll2003
Viewer • Updated • 20.7k • 2.92k • 5
How to use Prience91/ner_model_output with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="Prience91/ner_model_output") # Load model directly
from transformers import AutoTokenizer, AutoModelForTokenClassification
tokenizer = AutoTokenizer.from_pretrained("Prience91/ner_model_output")
model = AutoModelForTokenClassification.from_pretrained("Prience91/ner_model_output", device_map="auto")This model is a fine-tuned version of huggingface-course/bert-finetuned-ner on an unknown dataset. It achieves the following results on the evaluation set:
More information needed
Free Experiment
More information needed
The following hyperparameters were used during training:
| Training Loss | Epoch | Step | Validation Loss | Precision | Recall | F1 | Accuracy |
|---|---|---|---|---|---|---|---|
| 0.4102 | 1.0 | 1756 | 0.3312 | 0.5181 | 0.5141 | 0.5161 | 0.8931 |
| 0.2280 | 2.0 | 3512 | 0.2578 | 0.6467 | 0.6335 | 0.6400 | 0.9218 |
| 0.1525 | 3.0 | 5268 | 0.2535 | 0.6423 | 0.6818 | 0.6614 | 0.9241 |
Base model
huggingface-course/bert-finetuned-ner