We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 52b605d commit aff8bbbCopy full SHA for aff8bbb
utils/loggers/wandb/sweep.py
@@ -26,6 +26,11 @@ def sweep():
26
opt.epochs = hyp_dict.get("epochs")
27
opt.nosave = True
28
opt.data = hyp_dict.get("data")
29
+ opt.weights = str(opt.weights)
30
+ opt.cfg = str(opt.cfg)
31
+ opt.data = str(opt.data)
32
+ opt.hyp = str(opt.hyp)
33
+ opt.project = str(opt.project)
34
device = select_device(opt.device, batch_size=opt.batch_size)
35
36
# train
0 commit comments