From 1096596ad8e2550851751df70fd2a7e9bcdef245 Mon Sep 17 00:00:00 2001 From: Glenn Jocher Date: Tue, 18 Jun 2019 16:36:04 +0200 Subject: [PATCH] updates --- train.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/train.py b/train.py index 42554dd2..e1a786b0 100644 --- a/train.py +++ b/train.py @@ -367,7 +367,7 @@ if __name__ == '__main__': # Clip to limits keys = ['lr0', 'iou_t', 'momentum', 'weight_decay'] - limits = [(1e-4, 1e-2), (0, 0.90), (0.70, 0.99), (0, 0.01)] + limits = [(1e-4, 1e-2), (0, 0.00), (0.70, 0.99), (0, 0.01)] for k, v in zip(keys, limits): hyp[k] = np.clip(hyp[k], v[0], v[1])