Change models path

This commit is contained in:
Andras Schmelczer 2024-06-25 08:25:20 +01:00
commit 97e8cb1fe1
No known key found for this signature in database
GPG key ID: FC8F2C3D3D1A718C
2 changed files with 3 additions and 4 deletions

5
.gitignore vendored
View file

@ -1,5 +1,4 @@
__pycache__ __pycache__
runs runs*
*.log *.log
models/*.pth saved_models/*
models/*.json

View file

@ -5,7 +5,7 @@ DATA = sorted(Path("/mnt/wsl/PHYSICALDRIVE1/data/unsplash").glob("*.jpg"))
TRAIN_SIZE = 0.9 TRAIN_SIZE = 0.9
CACHE_PATH = Path("/mnt/wsl/PHYSICALDRIVE1/data/cache2") CACHE_PATH = Path("/mnt/wsl/PHYSICALDRIVE1/data/cache2")
MODELS_PATH = Path("/home/andras/projects/bipolaroid/models") MODELS_PATH = Path("/home/andras/projects/bipolaroid/saved_models")
LOGS_PATH = Path("/home/andras/projects/bipolaroid/logs") LOGS_PATH = Path("/home/andras/projects/bipolaroid/logs")
RUNS_PATH = Path("/home/andras/projects/bipolaroid/runs") RUNS_PATH = Path("/home/andras/projects/bipolaroid/runs")