Instructions to use nlpie/tiny-biobert with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use nlpie/tiny-biobert with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("fill-mask", model="nlpie/tiny-biobert")# Load model directly from transformers import AutoTokenizer, AutoModelForMaskedLM tokenizer = AutoTokenizer.from_pretrained("nlpie/tiny-biobert") model = AutoModelForMaskedLM.from_pretrained("nlpie/tiny-biobert") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -22,14 +22,14 @@ This model uses 4 hidden layers with a hidden dimension size and an embedding si
|
|
| 22 |
If you use this model, please consider citing the following paper:
|
| 23 |
|
| 24 |
```bibtex
|
| 25 |
-
@
|
| 26 |
-
|
| 27 |
-
|
| 28 |
-
|
| 29 |
-
|
| 30 |
-
|
| 31 |
-
|
| 32 |
-
year
|
| 33 |
-
|
| 34 |
}
|
| 35 |
```
|
|
|
|
| 22 |
If you use this model, please consider citing the following paper:
|
| 23 |
|
| 24 |
```bibtex
|
| 25 |
+
@article{rohanian2023effectiveness,
|
| 26 |
+
title={On the effectiveness of compact biomedical transformers},
|
| 27 |
+
author={Rohanian, Omid and Nouriborji, Mohammadmahdi and Kouchaki, Samaneh and Clifton, David A},
|
| 28 |
+
journal={Bioinformatics},
|
| 29 |
+
volume={39},
|
| 30 |
+
number={3},
|
| 31 |
+
pages={btad103},
|
| 32 |
+
year={2023},
|
| 33 |
+
publisher={Oxford University Press}
|
| 34 |
}
|
| 35 |
```
|