Spaces:
Sleeping
Sleeping
File size: 186 Bytes
d284020 |
1 2 3 4 5 6 7 8 |
from pathlib import Path
carvekit_dir = Path.home().joinpath(".cache/carvekit")
carvekit_dir.mkdir(parents=True, exist_ok=True)
checkpoints_dir = carvekit_dir.joinpath("checkpoints")
|