Spaces:
Running
on
L4
Running
on
L4
Update app.py
Browse files
app.py
CHANGED
@@ -12,6 +12,9 @@ CCD_URL = "https://huggingface.co/boltz-community/boltz-1/resolve/main/ccd.pkl"
|
|
12 |
MODEL_URL = "https://huggingface.co/boltz-community/boltz-1/resolve/main/boltz1.ckpt"
|
13 |
|
14 |
cache = "~/.boltz"
|
|
|
|
|
|
|
15 |
ccd = f"{cache}/ccd.pkl"
|
16 |
if not os.path.exists(ccd):
|
17 |
print(
|
|
|
12 |
MODEL_URL = "https://huggingface.co/boltz-community/boltz-1/resolve/main/boltz1.ckpt"
|
13 |
|
14 |
cache = "~/.boltz"
|
15 |
+
|
16 |
+
os.makedirs(cache)
|
17 |
+
|
18 |
ccd = f"{cache}/ccd.pkl"
|
19 |
if not os.path.exists(ccd):
|
20 |
print(
|