Instructions to use microsoft/BiomedNLP-BiomedBERT-base-uncased-abstract with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use microsoft/BiomedNLP-BiomedBERT-base-uncased-abstract with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("fill-mask", model="microsoft/BiomedNLP-BiomedBERT-base-uncased-abstract")# Load model directly from transformers import AutoTokenizer, AutoModelForMaskedLM tokenizer = AutoTokenizer.from_pretrained("microsoft/BiomedNLP-BiomedBERT-base-uncased-abstract") model = AutoModelForMaskedLM.from_pretrained("microsoft/BiomedNLP-BiomedBERT-base-uncased-abstract", device_map="auto") - Inference
- Notebooks
- Google Colab
- Kaggle
Adding exbert link
Browse files
README.md
CHANGED
|
@@ -25,3 +25,7 @@ If you find PubMedBERT useful in your research, please cite the following paper:
|
|
| 25 |
eprint = {arXiv:2007.15779},
|
| 26 |
}
|
| 27 |
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 25 |
eprint = {arXiv:2007.15779},
|
| 26 |
}
|
| 27 |
```
|
| 28 |
+
|
| 29 |
+
<a href="https://huggingface.co/exbert/?model=microsoft/BiomedNLP-PubMedBERT-base-uncased-abstract&modelKind=bidirectional&sentence=Gefitinib%20is%20an%20EGFR%20tyrosine%20kinase%20inhibitor,%20which%20is%20often%20used%20for%20breast%20cancer%20and%20NSCLC%20treatment.">
|
| 30 |
+
<img width="300px" src="https://cdn-media.huggingface.co/exbert/button.png">
|
| 31 |
+
</a>
|