This commit is contained in:
Andras Schmelczer 2024-04-28 12:19:19 +01:00
commit 294f2fab12
No known key found for this signature in database
GPG key ID: FC8F2C3D3D1A718C
9 changed files with 65414 additions and 14814 deletions

9
config.py Normal file
View file

@ -0,0 +1,9 @@
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)