eriktks/conll2002
Updated • 996 • 11
How to use anfemora/biobert-base-case-ner with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("token-classification", model="anfemora/biobert-base-case-ner") # Load model directly
from transformers import AutoTokenizer, AutoModelForTokenClassification
tokenizer = AutoTokenizer.from_pretrained("anfemora/biobert-base-case-ner")
model = AutoModelForTokenClassification.from_pretrained("anfemora/biobert-base-case-ner")This model is a fine-tuned version of dmis-lab/biobert-v1.1 on the conll2002 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.1214 | 1.0 | 1041 | 0.1681 | 0.6611 | 0.6997 | 0.6798 | 0.9523 |
| 0.0814 | 2.0 | 2082 | 0.1652 | 0.6692 | 0.7270 | 0.6969 | 0.9540 |
| 0.0531 | 3.0 | 3123 | 0.1628 | 0.7291 | 0.7682 | 0.7481 | 0.9624 |
| 0.0357 | 4.0 | 4164 | 0.1799 | 0.7427 | 0.7721 | 0.7571 | 0.9620 |
| 0.0277 | 5.0 | 5205 | 0.1963 | 0.7530 | 0.7824 | 0.7674 | 0.9627 |
| 0.0168 | 6.0 | 6246 | 0.2115 | 0.7333 | 0.7771 | 0.7546 | 0.9615 |
| 0.0136 | 7.0 | 7287 | 0.2311 | 0.7376 | 0.7769 | 0.7567 | 0.9613 |
| 0.0106 | 8.0 | 8328 | 0.2450 | 0.7552 | 0.7861 | 0.7703 | 0.9626 |
| 0.0062 | 9.0 | 9369 | 0.2572 | 0.7589 | 0.7877 | 0.7730 | 0.9622 |
| 0.0061 | 10.0 | 10410 | 0.2531 | 0.7495 | 0.7884 | 0.7684 | 0.9630 |
Base model
dmis-lab/biobert-v1.1