9 lines
282 B
Python
9 lines
282 B
Python
from pathlib import Path
|
|
|
|
DATA = sorted(Path("/mnt/wsl/PHYSICALDRIVE1/data/unsplash").glob("*.jpg"))
|
|
|
|
CACHE_PATH = Path("/mnt/wsl/PHYSICALDRIVE1/data/cache2")
|
|
CACHE_PATH.mkdir(exist_ok=True, parents=True)
|
|
|
|
MODELS_PATH = Path("models")
|
|
MODELS_PATH.mkdir(exist_ok=True, parents=True)
|