Spaces:
Runtime error
Runtime error
change path to permenant disk
Browse files
app.py
CHANGED
@@ -51,7 +51,7 @@ except ImportError as e:
|
|
51 |
class CheckpointDownloader:
|
52 |
"""Handles downloading of all required checkpoints for HunyuanImage."""
|
53 |
|
54 |
-
def __init__(self, base_dir: str = "
|
55 |
self.base_dir = Path(base_dir)
|
56 |
self.base_dir.mkdir(exist_ok=True)
|
57 |
|
|
|
51 |
class CheckpointDownloader:
|
52 |
"""Handles downloading of all required checkpoints for HunyuanImage."""
|
53 |
|
54 |
+
def __init__(self, base_dir: str = "/data/ckpts"):
|
55 |
self.base_dir = Path(base_dir)
|
56 |
self.base_dir.mkdir(exist_ok=True)
|
57 |
|