summaryrefslogtreecommitdiff
path: root/augment.py
diff options
context:
space:
mode:
authorJules Laplace <julescarbon@gmail.com>2018-09-14 17:49:05 +0200
committerJules Laplace <julescarbon@gmail.com>2018-09-14 17:49:05 +0200
commit645805625e43f9e2511f8be73df09e00da97e22e (patch)
tree89898b1bf0105dd76403bd805d15fab961c50ef1 /augment.py
parente959fa0cde1dc95a79ff0f1840c6be37bf27d6de (diff)
load iters
Diffstat (limited to 'augment.py')
-rwxr-xr-xaugment.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/augment.py b/augment.py
index 6741f04..cb75880 100755
--- a/augment.py
+++ b/augment.py
@@ -74,7 +74,7 @@ if opt.which_epoch == 'latest':
current_epoch, epoch_iter = np.loadtxt(iter_path , delimiter=',', dtype=int)
except:
current_epoch, epoch_iter = 1, 0
- print('Resuming from epoch %d at iteration %d' % (current_epoch, epoch_iter))
+ print('Loading epoch %d' % (current_epoch,))
else:
current_epoch, epoch_iter = 1, 0
else: