xianbao commited on
Commit
fb8208c
·
verified ·
1 Parent(s): 45e7a3f

change path to permenant disk

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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 = "./ckpts"):
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