File size: 1,736 Bytes
ddfe626
eb331fa
3ba003f
ddfe626
3ba003f
 
 
3a3f44a
 
5aa6473
3a3f44a
 
3ba003f
461d0ab
3ba003f
 
 
 
 
 
1f7d66d
 
 
eb331fa
ddfe626
3ba003f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
---

language: en
license: cc
tags:
- named-entity-recognition
- token-classification
- entity_extraction
- multi_class_classification
task: 
- multi_class_classification
- entity_extraction
- named-entity-recognition
- token-classification
datasets: ncbi_disease
metrics:
- precision
- recall
- f1
- accuracy

widget:
- text: " The risk of cancer, especially lymphoid neoplasias, is substantially elevated in A-T patients and has long been associated with chromosomal instability."

---

## Model information:
microsoft/BiomedNLP-PubMedBERT-base-uncased-abstract model finetuned using the ncbi_disease dataset from the datasets library. 

## Intended uses:
This model is intended to be used for named entity recoginition tasks. The model will identify disease entities in text.  The model will predict lables based upon the NCBI-disease dataset, please see the dataset information for details.

## Limitations:
Note that the dataset and model may not be fully represetative or suitable for all needs it is recommended that the paper for the dataset and the base model card should be reviewed before using the model - 
- [NCBI Disease](https://www.ncbi.nlm.nih.gov/pmc/articles/PMC3951655/pdf/nihms557856.pdf)
- [microsoft/BiomedNLP-PubMedBERT-base-uncased-abstract-ft-ncbi-disease](https://huggingface.co/microsoft/BiomedNLP-PubMedBERT-base-uncased-abstract)


## How to use:
Load the model from the library using the following checkpoints:
```python
from transformers import AutoTokenizer, AutoModel
tokenizer = AutoTokenizer.from_pretrained("sarahmiller137/BiomedNLP-PubMedBERT-base-uncased-abstract-ft-ncbi-disease")
model = AutoModel.from_pretrained("sarahmiller137/BiomedNLP-PubMedBERT-base-uncased-abstract-ft-ncbi-disease")
```