avelezarce
commited on
Commit
•
2591c39
1
Parent(s):
8ab2f98
Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
The TDC Model Hub Transformers API is under development. In the meantime, we highly recommend using the native HF Transformers library and original Geneformer repo to run inference.
|
2 |
+
|
3 |
+
```python
|
4 |
+
# Load model directly
|
5 |
+
from transformers import AutoModel
|
6 |
+
model = AutoModel.from_pretrained("metehergul/scgpt")
|
7 |
+
```
|
8 |
+
|
9 |
+
For further details see: https://huggingface.co/metehergul/scgpt
|