From a971b33b746807e37c32bec988b74d5c50278fff Mon Sep 17 00:00:00 2001 From: Glenn Jocher Date: Mon, 17 Feb 2020 17:34:40 -0800 Subject: [PATCH] updates --- utils/parse_config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/parse_config.py b/utils/parse_config.py index 2516388a..1a5d1126 100644 --- a/utils/parse_config.py +++ b/utils/parse_config.py @@ -33,7 +33,7 @@ def parse_model_cfg(path): # Check all fields are supported supported = ['type', 'batch_normalize', 'filters', 'size', 'stride', 'pad', 'activation', 'layers', 'groups', 'from', 'mask', 'anchors', 'classes', 'num', 'jitter', 'ignore_thresh', 'truth_thresh', 'random', - 'stride_x', 'stride_y', 'weights_type', 'weights_normalization'] + 'stride_x', 'stride_y', 'weights_type', 'weights_normalization', 'scale_x_y'] f = [] # fields for x in mdefs[1:]: