ncbi/ncbi_disease
Updated • 3.75k • 52
How to use jise/biogpt-finetuned-ner with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("token-classification", model="jise/biogpt-finetuned-ner") # Load model directly
from transformers import AutoTokenizer, AutoModelForTokenClassification
tokenizer = AutoTokenizer.from_pretrained("jise/biogpt-finetuned-ner")
model = AutoModelForTokenClassification.from_pretrained("jise/biogpt-finetuned-ner")This model is a fine-tuned version of microsoft/biogpt 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 |
|---|---|---|---|---|---|---|---|
| 0.1601 | 1.0 | 679 | 0.1294 | 0.3 | 0.3698 | 0.3312 | 0.9548 |
| 0.1095 | 2.0 | 1358 | 0.1303 | 0.3188 | 0.3532 | 0.3351 | 0.9582 |
| 0.0582 | 3.0 | 2037 | 0.1555 | 0.3285 | 0.4003 | 0.3608 | 0.9566 |
Base model
microsoft/biogpt