Spaces:
Runtime error
Runtime error
Create app.py
Browse files
app.py
ADDED
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import os
|
2 |
+
os.system("git clone https://github.com/etched-ai/open-oasis.git")
|
3 |
+
os.system("cd open-oasis")
|
4 |
+
os.system("pip install -r requirements.txt")
|
5 |
+
os.system("huggingface-cli login")
|
6 |
+
os.system("huggingface-cli download Etched/oasis-500m oasis500m.pt") # DiT checkpoint
|
7 |
+
os.system("huggingface-cli download Etched/oasis-500m vit-l-20.pt")
|