Instructions to use ctheodoris/Geneformer with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use ctheodoris/Geneformer with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("fill-mask", model="ctheodoris/Geneformer")# Load model directly from transformers import AutoTokenizer, AutoModelForMaskedLM tokenizer = AutoTokenizer.from_pretrained("ctheodoris/Geneformer") model = AutoModelForMaskedLM.from_pretrained("ctheodoris/Geneformer") - Inference
- Notebooks
- Google Colab
- Kaggle
tensorboard add to reqs
#407
by madhavanvenkatesh - opened
- requirements.txt +1 -0
requirements.txt
CHANGED
|
@@ -19,6 +19,7 @@ seaborn>=0.12
|
|
| 19 |
setuptools>=65.6
|
| 20 |
statsmodels>=0.14
|
| 21 |
tdigest>=0.5.2
|
|
|
|
| 22 |
torch>=2.0.1
|
| 23 |
tqdm>=4.65
|
| 24 |
transformers>=4.28
|
|
|
|
| 19 |
setuptools>=65.6
|
| 20 |
statsmodels>=0.14
|
| 21 |
tdigest>=0.5.2
|
| 22 |
+
tensorboard>=2.15
|
| 23 |
torch>=2.0.1
|
| 24 |
tqdm>=4.65
|
| 25 |
transformers>=4.28
|