Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

284 lines
12KB

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