ncbi/ncbi_disease
Updated • 3.97k • 52
How to use Pontonkid/Biomed_bert-base-uncased-NER with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("token-classification", model="Pontonkid/Biomed_bert-base-uncased-NER") # Load model directly
from transformers import AutoTokenizer, AutoModelForTokenClassification
tokenizer = AutoTokenizer.from_pretrained("Pontonkid/Biomed_bert-base-uncased-NER")
model = AutoModelForTokenClassification.from_pretrained("Pontonkid/Biomed_bert-base-uncased-NER")This model is a fine-tuned version of microsoft/BiomedNLP-BiomedBERT-base-uncased-abstract-fulltext on the ncbi_disease 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 | 340 | 0.0596 | 0.7778 | 0.875 | 0.8235 | 0.9795 |
| 0.0787 | 2.0 | 680 | 0.0416 | 0.8246 | 0.8865 | 0.8544 | 0.9851 |
| 0.0202 | 3.0 | 1020 | 0.0494 | 0.8385 | 0.8812 | 0.8593 | 0.9846 |
| 0.0202 | 4.0 | 1360 | 0.0543 | 0.8457 | 0.8906 | 0.8676 | 0.9851 |