提交 9b7386f6 authored 作者: Alex Stoken's avatar Alex Stoken

Add save_dir arg to test.test, use arg as location for saving batch jpgs

上级 945307be
......@@ -20,7 +20,8 @@ def test(data,
model=None,
dataloader=None,
fast=False,
verbose=False):
verbose=False,
save_dir='.'):
# Initialize/load model and set device
if model is None:
training = False
......@@ -28,7 +29,7 @@ def test(data,
half = device.type != 'cpu' # half precision only supported on CUDA
# Remove previous
for f in glob.glob('test_batch*.jpg'):
for f in glob.glob(f'{save_dir}/test_batch*.jpg'):
os.remove(f)
# Load model
......@@ -177,9 +178,9 @@ def test(data,
# Plot images
if batch_i < 1:
f = 'test_batch%g_gt.jpg' % batch_i # filename
f = os.path.join(save_dir, 'test_batch%g_gt.jpg' % batch_i) # filename
plot_images(img, targets, paths, f, names) # ground truth
f = 'test_batch%g_pred.jpg' % batch_i
f = os.path.join(save_dir,'test_batch%g_pred.jpg' % batch_i)
plot_images(img, output_to_target(output, width, height), paths, f, names) # predictions
# Compute statistics
......
......@@ -303,7 +303,8 @@ def train(hyp):
model=ema.ema,
single_cls=opt.single_cls,
dataloader=testloader,
fast=epoch < epochs / 2)
fast=epoch < epochs / 2
save_dir=log_dir)
# Write
with open(results_file, 'a') as f:
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论