This commit is contained in:
Glenn Jocher 2020-02-17 17:34:40 -08:00
parent 4fa0a32d05
commit a971b33b74
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ def parse_model_cfg(path):
# Check all fields are supported # Check all fields are supported
supported = ['type', 'batch_normalize', 'filters', 'size', 'stride', 'pad', 'activation', 'layers', 'groups', supported = ['type', 'batch_normalize', 'filters', 'size', 'stride', 'pad', 'activation', 'layers', 'groups',
'from', 'mask', 'anchors', 'classes', 'num', 'jitter', 'ignore_thresh', 'truth_thresh', 'random', '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 f = [] # fields
for x in mdefs[1:]: for x in mdefs[1:]: