Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

275 lines
12KB

  1. import argparse
  2. import json
  3. from utils import google_utils
  4. from utils.datasets import *
  5. from utils.utils import *
  6. def test(data,
  7. weights=None,
  8. batch_size=16,
  9. imgsz=640,
  10. conf_thres=0.001,
  11. iou_thres=0.6, # for NMS
  12. save_json=False,
  13. single_cls=False,
  14. augment=False,
  15. verbose=False,
  16. model=None,
  17. dataloader=None,
  18. merge=False):
  19. # Initialize/load model and set device
  20. if model is None:
  21. training = False
  22. device = torch_utils.select_device(opt.device, batch_size=batch_size)
  23. # Remove previous
  24. for f in glob.glob('test_batch*.jpg'):
  25. os.remove(f)
  26. # Load model
  27. google_utils.attempt_download(weights)
  28. model = torch.load(weights, map_location=device)['model'].float() # load to FP32
  29. torch_utils.model_info(model)
  30. model.fuse()
  31. model.to(device)
  32. # Multi-GPU disabled, incompatible with .half() https://github.com/ultralytics/yolov5/issues/99
  33. # if device.type != 'cpu' and torch.cuda.device_count() > 1:
  34. # model = nn.DataParallel(model)
  35. else: # called by train.py
  36. training = True
  37. device = next(model.parameters()).device # get model device
  38. # Half
  39. half = device.type != 'cpu' and torch.cuda.device_count() == 1 # half precision only supported on single-GPU
  40. if half:
  41. model.half() # to FP16
  42. # Configure
  43. model.eval()
  44. with open(data) as f:
  45. data = yaml.load(f, Loader=yaml.FullLoader) # model dict
  46. nc = 1 if single_cls else int(data['nc']) # number of classes
  47. iouv = torch.linspace(0.5, 0.95, 10).to(device) # iou vector for mAP@0.5:0.95
  48. niou = iouv.numel()
  49. # Dataloader
  50. if dataloader is None: # not training
  51. merge = opt.merge # use Merge NMS
  52. img = torch.zeros((1, 3, imgsz, imgsz), device=device) # init img
  53. _ = model(img.half() if half else img) if device.type != 'cpu' else None # run once
  54. path = data['test'] if opt.task == 'test' else data['val'] # path to val/test images
  55. dataloader = create_dataloader(path, imgsz, batch_size, int(max(model.stride)), opt,
  56. hyp=None, augment=False, cache=False, pad=0.5, rect=True)[0]
  57. seen = 0
  58. names = model.names if hasattr(model, 'names') else model.module.names
  59. coco91class = coco80_to_coco91_class()
  60. s = ('%20s' + '%12s' * 6) % ('Class', 'Images', 'Targets', 'P', 'R', 'mAP@.5', 'mAP@.5:.95')
  61. p, r, f1, mp, mr, map50, map, t0, t1 = 0., 0., 0., 0., 0., 0., 0., 0., 0.
  62. loss = torch.zeros(3, device=device)
  63. jdict, stats, ap, ap_class = [], [], [], []
  64. for batch_i, (img, targets, paths, shapes) in enumerate(tqdm(dataloader, desc=s)):
  65. img = img.to(device)
  66. img = img.half() if half else img.float() # uint8 to fp16/32
  67. img /= 255.0 # 0 - 255 to 0.0 - 1.0
  68. targets = targets.to(device)
  69. nb, _, height, width = img.shape # batch size, channels, height, width
  70. whwh = torch.Tensor([width, height, width, height]).to(device)
  71. # Disable gradients
  72. with torch.no_grad():
  73. # Run model
  74. t = torch_utils.time_synchronized()
  75. inf_out, train_out = model(img, augment=augment) # inference and training outputs
  76. t0 += torch_utils.time_synchronized() - t
  77. # Compute loss
  78. if training: # if model has loss hyperparameters
  79. loss += compute_loss([x.float() for x in train_out], targets, model)[1][:3] # GIoU, obj, cls
  80. # Run NMS
  81. t = torch_utils.time_synchronized()
  82. output = non_max_suppression(inf_out, conf_thres=conf_thres, iou_thres=iou_thres, merge=merge)
  83. t1 += torch_utils.time_synchronized() - t
  84. # Statistics per image
  85. for si, pred in enumerate(output):
  86. labels = targets[targets[:, 0] == si, 1:]
  87. nl = len(labels)
  88. tcls = labels[:, 0].tolist() if nl else [] # target class
  89. seen += 1
  90. if pred is None:
  91. if nl:
  92. stats.append((torch.zeros(0, niou, dtype=torch.bool), torch.Tensor(), torch.Tensor(), tcls))
  93. continue
  94. # Append to text file
  95. # with open('test.txt', 'a') as file:
  96. # [file.write('%11.5g' * 7 % tuple(x) + '\n') for x in pred]
  97. # Clip boxes to image bounds
  98. clip_coords(pred, (height, width))
  99. # Append to pycocotools JSON dictionary
  100. if save_json:
  101. # [{"image_id": 42, "category_id": 18, "bbox": [258.15, 41.29, 348.26, 243.78], "score": 0.236}, ...
  102. image_id = int(Path(paths[si]).stem.split('_')[-1])
  103. box = pred[:, :4].clone() # xyxy
  104. scale_coords(img[si].shape[1:], box, shapes[si][0], shapes[si][1]) # to original shape
  105. box = xyxy2xywh(box) # xywh
  106. box[:, :2] -= box[:, 2:] / 2 # xy center to top-left corner
  107. for p, b in zip(pred.tolist(), box.tolist()):
  108. jdict.append({'image_id': image_id,
  109. 'category_id': coco91class[int(p[5])],
  110. 'bbox': [round(x, 3) for x in b],
  111. 'score': round(p[4], 5)})
  112. # Assign all predictions as incorrect
  113. correct = torch.zeros(pred.shape[0], niou, dtype=torch.bool, device=device)
  114. if nl:
  115. detected = [] # target indices
  116. tcls_tensor = labels[:, 0]
  117. # target boxes
  118. tbox = xywh2xyxy(labels[:, 1:5]) * whwh
  119. # Per target class
  120. for cls in torch.unique(tcls_tensor):
  121. ti = (cls == tcls_tensor).nonzero().view(-1) # prediction indices
  122. pi = (cls == pred[:, 5]).nonzero().view(-1) # target indices
  123. # Search for detections
  124. if pi.shape[0]:
  125. # Prediction to target ious
  126. ious, i = box_iou(pred[pi, :4], tbox[ti]).max(1) # best ious, indices
  127. # Append detections
  128. for j in (ious > iouv[0]).nonzero():
  129. d = ti[i[j]] # detected target
  130. if d not in detected:
  131. detected.append(d)
  132. correct[pi[j]] = ious[j] > iouv # iou_thres is 1xn
  133. if len(detected) == nl: # all targets already located in image
  134. break
  135. # Append statistics (correct, conf, pcls, tcls)
  136. stats.append((correct.cpu(), pred[:, 4].cpu(), pred[:, 5].cpu(), tcls))
  137. # Plot images
  138. if batch_i < 1:
  139. f = 'test_batch%g_gt.jpg' % batch_i # filename
  140. plot_images(img, targets, paths, f, names) # ground truth
  141. f = 'test_batch%g_pred.jpg' % batch_i
  142. plot_images(img, output_to_target(output, width, height), paths, f, names) # predictions
  143. # Compute statistics
  144. stats = [np.concatenate(x, 0) for x in zip(*stats)] # to numpy
  145. if len(stats):
  146. p, r, ap, f1, ap_class = ap_per_class(*stats)
  147. p, r, ap50, ap = p[:, 0], r[:, 0], ap[:, 0], ap.mean(1) # [P, R, AP@0.5, AP@0.5:0.95]
  148. mp, mr, map50, map = p.mean(), r.mean(), ap50.mean(), ap.mean()
  149. nt = np.bincount(stats[3].astype(np.int64), minlength=nc) # number of targets per class
  150. else:
  151. nt = torch.zeros(1)
  152. # Print results
  153. pf = '%20s' + '%12.3g' * 6 # print format
  154. print(pf % ('all', seen, nt.sum(), mp, mr, map50, map))
  155. # Print results per class
  156. if verbose and nc > 1 and len(stats):
  157. for i, c in enumerate(ap_class):
  158. print(pf % (names[c], seen, nt[c], p[i], r[i], ap50[i], ap[i]))
  159. # Print speeds
  160. t = tuple(x / seen * 1E3 for x in (t0, t1, t0 + t1)) + (imgsz, imgsz, batch_size) # tuple
  161. if not training:
  162. print('Speed: %.1f/%.1f/%.1f ms inference/NMS/total per %gx%g image at batch-size %g' % t)
  163. # Save JSON
  164. if save_json and map50 and len(jdict):
  165. imgIds = [int(Path(x).stem.split('_')[-1]) for x in dataloader.dataset.img_files]
  166. f = 'detections_val2017_%s_results.json' % \
  167. (weights.split(os.sep)[-1].replace('.pt', '') if weights else '') # filename
  168. print('\nCOCO mAP with pycocotools... saving %s...' % f)
  169. with open(f, 'w') as file:
  170. json.dump(jdict, file)
  171. try:
  172. from pycocotools.coco import COCO
  173. from pycocotools.cocoeval import COCOeval
  174. # https://github.com/cocodataset/cocoapi/blob/master/PythonAPI/pycocoEvalDemo.ipynb
  175. cocoGt = COCO(glob.glob('../coco/annotations/instances_val*.json')[0]) # initialize COCO ground truth api
  176. cocoDt = cocoGt.loadRes(f) # initialize COCO pred api
  177. cocoEval = COCOeval(cocoGt, cocoDt, 'bbox')
  178. cocoEval.params.imgIds = imgIds # image IDs to evaluate
  179. cocoEval.evaluate()
  180. cocoEval.accumulate()
  181. cocoEval.summarize()
  182. map, map50 = cocoEval.stats[:2] # update results (mAP@0.5:0.95, mAP@0.5)
  183. except:
  184. print('WARNING: pycocotools must be installed with numpy==1.17 to run correctly. '
  185. 'See https://github.com/cocodataset/cocoapi/issues/356')
  186. # Return results
  187. model.float() # for training
  188. maps = np.zeros(nc) + map
  189. for i, c in enumerate(ap_class):
  190. maps[c] = ap[i]
  191. return (mp, mr, map50, map, *(loss.cpu() / len(dataloader)).tolist()), maps, t
  192. if __name__ == '__main__':
  193. parser = argparse.ArgumentParser(prog='test.py')
  194. parser.add_argument('--weights', type=str, default='weights/yolov5s.pt', help='model.pt path')
  195. parser.add_argument('--data', type=str, default='data/coco128.yaml', help='*.data path')
  196. parser.add_argument('--batch-size', type=int, default=32, help='size of each image batch')
  197. parser.add_argument('--img-size', type=int, default=640, help='inference size (pixels)')
  198. parser.add_argument('--conf-thres', type=float, default=0.001, help='object confidence threshold')
  199. parser.add_argument('--iou-thres', type=float, default=0.65, help='IOU threshold for NMS')
  200. parser.add_argument('--save-json', action='store_true', help='save a cocoapi-compatible JSON results file')
  201. parser.add_argument('--task', default='val', help="'val', 'test', 'study'")
  202. parser.add_argument('--device', default='', help='cuda device, i.e. 0 or 0,1,2,3 or cpu')
  203. parser.add_argument('--single-cls', action='store_true', help='treat as single-class dataset')
  204. parser.add_argument('--augment', action='store_true', help='augmented inference')
  205. parser.add_argument('--merge', action='store_true', help='use Merge NMS')
  206. parser.add_argument('--verbose', action='store_true', help='report mAP by class')
  207. opt = parser.parse_args()
  208. opt.img_size = check_img_size(opt.img_size)
  209. opt.save_json = opt.save_json or opt.data.endswith('coco.yaml')
  210. opt.data = check_file(opt.data) # check file
  211. print(opt)
  212. # task = 'val', 'test', 'study'
  213. if opt.task in ['val', 'test']: # (default) run normally
  214. test(opt.data,
  215. opt.weights,
  216. opt.batch_size,
  217. opt.img_size,
  218. opt.conf_thres,
  219. opt.iou_thres,
  220. opt.save_json,
  221. opt.single_cls,
  222. opt.augment,
  223. opt.verbose)
  224. elif opt.task == 'study': # run over a range of settings and save/plot
  225. for weights in ['yolov5s.pt', 'yolov5m.pt', 'yolov5l.pt', 'yolov5x.pt', 'yolov3-spp.pt']:
  226. f = 'study_%s_%s.txt' % (Path(opt.data).stem, Path(weights).stem) # filename to save to
  227. x = list(range(352, 832, 64)) # x axis
  228. y = [] # y axis
  229. for i in x: # img-size
  230. print('\nRunning %s point %s...' % (f, i))
  231. r, _, t = test(opt.data, weights, opt.batch_size, i, opt.conf_thres, opt.iou_thres, opt.save_json)
  232. y.append(r + t) # results and times
  233. np.savetxt(f, y, fmt='%10.4g') # save
  234. os.system('zip -r study.zip study_*.txt')
  235. # plot_study_txt(f, x) # plot