Skip to content
Snippets Groups Projects
Commit c938bb68 authored by Tim Laibacher's avatar Tim Laibacher
Browse files

Fix val. training

parent 915f4e79
No related branches found
No related tags found
No related merge requests found
Pipeline #31361 failed
......@@ -93,7 +93,7 @@ def do_valtrain(
if epoch % checkpoint_period == 0:
checkpointer.save("model_{:03d}".format(epoch), **arguments)
val_folder = os.path.join((output_folder,epoch))
val_folder = os.path.join(output_folder,epoch)
do_inference(model,val_loader, device, val_folder)
if epoch == max_epoch:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment