eriktks/conll2003
Updated • 39.1k • 166
How to use ViktorDo/BioBERT-finetuned-ner-conll2003 with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("token-classification", model="ViktorDo/BioBERT-finetuned-ner-conll2003") # Load model directly
from transformers import AutoTokenizer, AutoModelForTokenClassification
tokenizer = AutoTokenizer.from_pretrained("ViktorDo/BioBERT-finetuned-ner-conll2003")
model = AutoModelForTokenClassification.from_pretrained("ViktorDo/BioBERT-finetuned-ner-conll2003")This model is a fine-tuned version of dmis-lab/biobert-base-cased-v1.2 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 | Accuracy |
|---|---|---|---|---|---|---|---|
| 0.133 | 1.0 | 1756 | 0.1027 | 0.8459 | 0.8672 | 0.8564 | 0.9699 |
| 0.0585 | 2.0 | 3512 | 0.0992 | 0.8785 | 0.8995 | 0.8889 | 0.9749 |
| 0.0299 | 3.0 | 5268 | 0.1057 | 0.8879 | 0.9039 | 0.8958 | 0.9764 |