Fix caching

This commit is contained in:
Andras Schmelczer 2024-05-12 21:59:10 +01:00
commit 09aceae9d4
No known key found for this signature in database
GPG key ID: FC8F2C3D3D1A718C
2 changed files with 24 additions and 14 deletions

View file

@ -2,7 +2,7 @@ from pathlib import Path
DATA = sorted(Path("/mnt/wsl/PHYSICALDRIVE1/data/unsplash").glob("*.jpg"))
CACHE_PATH = Path("/mnt/wsl/PHYSICALDRIVE1/data/cache2")
CACHE_PATH = Path("/mnt/wsl/PHYSICALDRIVE1/data/cache")
CACHE_PATH.mkdir(exist_ok=True, parents=True)
MODELS_PATH = Path("/home/andras/projects/bipolaroid/models")