ncbi/ncbi_disease
Updated • 2.95k • 52
How to use jise/bert-finetuned-ner with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("token-classification", model="jise/bert-finetuned-ner") # Load model directly
from transformers import AutoTokenizer, AutoModelForTokenClassification
tokenizer = AutoTokenizer.from_pretrained("jise/bert-finetuned-ner")
model = AutoModelForTokenClassification.from_pretrained("jise/bert-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.3388 | 1.0 | 679 | 0.2280 | 0.0292 | 0.0254 | 0.0272 | 0.9312 |
| 0.2425 | 2.0 | 1358 | 0.2161 | 0.0612 | 0.0572 | 0.0591 | 0.9345 |
| 0.1811 | 3.0 | 2037 | 0.2151 | 0.0822 | 0.0750 | 0.0784 | 0.9370 |
Base model
microsoft/biogpt