From d6a7a614dc35120a7704a979d171cc967510b978 Mon Sep 17 00:00:00 2001 From: Glenn Jocher Date: Sun, 1 Dec 2019 13:51:55 -0800 Subject: [PATCH] updates --- train.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/train.py b/train.py index 59e93619..67996e4e 100644 --- a/train.py +++ b/train.py @@ -43,7 +43,7 @@ hyp = {'giou': 3.31, # giou loss gain # Overwrite hyp with hyp*.txt (optional) f = glob.glob('hyp*.txt') if f: - print('Using %s' % f) + print('Using %s' % f[0]) for k, v in zip(hyp.keys(), np.loadtxt(f[0])): hyp[k] = v