Browse Source

Update test.py

5.0
Glenn Jocher GitHub 4 years ago
parent
commit
c3d3e6b776
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 7 deletions
  1. +7
    -7
      test.py

+ 7
- 7
test.py View File

verbose=False, verbose=False,
model=None, model=None,
dataloader=None, dataloader=None,
fast=False,
save_dir='.',
save_dir='',
merge=False): merge=False):


# Initialize/load model and set device # Initialize/load model and set device
device = torch_utils.select_device(opt.device, batch_size=batch_size) device = torch_utils.select_device(opt.device, batch_size=batch_size)


# Remove previous # Remove previous
for f in glob.glob(f'{save_dir}/test_batch*.jpg'):
for f in glob.glob(str(Path(save_dir) / 'test_batch*.jpg')):
os.remove(f) os.remove(f)


# Load model # Load model


# Plot images # Plot images
if batch_i < 1: if batch_i < 1:
f = os.path.join(save_dir, 'test_batch%g_gt.jpg' % batch_i) # filename
plot_images(img, targets, paths, f, names) # ground truth
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
f = Path(save_dir) / ('test_batch%g_gt.jpg' % batch_i) # filename
plot_images(img, targets, paths, str(f), names) # ground truth
f = Path(save_dir) / ('test_batch%g_pred.jpg' % batch_i)
plot_images(img, output_to_target(output, width, height), paths, str(f), names) # predictions


# Compute statistics # Compute statistics
stats = [np.concatenate(x, 0) for x in zip(*stats)] # to numpy stats = [np.concatenate(x, 0) for x in zip(*stats)] # to numpy

Loading…
Cancel
Save