From 0b971eddffba1956afe826c7147127483423c3f0 Mon Sep 17 00:00:00 2001 From: Glenn Jocher Date: Wed, 20 Feb 2019 18:41:31 +0100 Subject: [PATCH] updates --- train.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/train.py b/train.py index 81ab81c5..1239fcb5 100644 --- a/train.py +++ b/train.py @@ -162,7 +162,7 @@ def train( if best_loss == loss_per_target: os.system('cp ' + latest + ' ' + best) - # Save backup weights every 5 epochs + # Save backup weights every 5 epochs (optional) # if (epoch > 0) & (epoch % 5 == 0): # os.system('cp ' + latest + ' ' + os.path.join(weights, 'backup{}.pt'.format(epoch)))