Instructions to use tdc/scGPT with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use tdc/scGPT with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("tdc/scGPT", device_map="auto") - Notebooks
- Google Colab
- Kaggle
Update config.json
Browse files- config.json +1 -0
config.json
CHANGED
|
@@ -1,5 +1,6 @@
|
|
| 1 |
{
|
| 2 |
"_attn_implementation_autoset": true,
|
|
|
|
| 3 |
"cell_emb_style": "cls",
|
| 4 |
"d_hid": 512,
|
| 5 |
"dropout": 0.0,
|
|
|
|
| 1 |
{
|
| 2 |
"_attn_implementation_autoset": true,
|
| 3 |
+
"architectures": ["ScGPTModel"],
|
| 4 |
"cell_emb_style": "cls",
|
| 5 |
"d_hid": 512,
|
| 6 |
"dropout": 0.0,
|