Turn opt into dictionary before sending it to yaml

pull/1/head
Alex Stoken 5 years ago
parent bc4ef4861b
commit 611aacf1bf

@ -193,7 +193,7 @@ def train(hyp):
yaml.dump(hyp, f)
with open(os.path.join(log_dir, 'opt.yaml'), 'w') as f:
yaml.dump(opt, f)
yaml.dump(vars(opt), f)
# Class frequency
labels = np.concatenate(dataset.labels, 0)

Loading…
Cancel
Save