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
peft>=0.11.1
Browse files- requirements.txt +1 -0
requirements.txt
CHANGED
|
@@ -8,6 +8,7 @@ optuna>=3.6
|
|
| 8 |
optuna-integration>=3.6
|
| 9 |
packaging>=23.0
|
| 10 |
pandas>=2.0
|
|
|
|
| 11 |
pyarrow>=12.0
|
| 12 |
pytz>=2023.0
|
| 13 |
ray>=2.6
|
|
|
|
| 8 |
optuna-integration>=3.6
|
| 9 |
packaging>=23.0
|
| 10 |
pandas>=2.0
|
| 11 |
+
peft>=0.11.1
|
| 12 |
pyarrow>=12.0
|
| 13 |
pytz>=2023.0
|
| 14 |
ray>=2.6
|