Adjust validation to one time per epoch

This commit is contained in:
henryruhs
2025-02-21 10:26:07 +01:00
parent 5934b47961
commit 3d9ff4add0
2 changed files with 2 additions and 3 deletions
+1 -1
View File
@@ -32,7 +32,7 @@ file_pattern = .datasets/megaface/**/*.jpg
```
[training.loader]
split_ratio = 0.8
split_ratio = 0.95
batch_size = 256
num_workers = 8
```
+1 -2
View File
@@ -111,8 +111,7 @@ def create_trainer() -> Trainer:
save_top_k = 3,
save_last = True
)
],
val_check_interval = 100
]
)