城管三模型代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

пре 10 месеци
пре 9 месеци
пре 10 месеци
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284
  1. # YOLOv5 YOLO-specific modules
  2. import argparse
  3. import logging
  4. import sys
  5. from copy import deepcopy
  6. import torch
  7. sys.path.append('./') # to run '$ python *.py' files in subdirectories
  8. logger = logging.getLogger(__name__)
  9. from models.common import *
  10. from models.experimental import *
  11. from utils.autoanchor import check_anchor_order
  12. from utils.general import make_divisible, check_file, set_logging
  13. from utils.torch_utils import time_synchronized, fuse_conv_and_bn, model_info, scale_img, initialize_weights, \
  14. select_device, copy_attr
  15. try:
  16. import thop # for FLOPS computation
  17. except ImportError:
  18. thop = None
  19. class Detect(nn.Module):
  20. stride = None # strides computed during build
  21. export = False # onnx export
  22. def __init__(self, nc=80, anchors=(), ch=()): # detection layers
  23. super(Detect, self).__init__()
  24. self.no = 6
  25. self.nl = 3
  26. self.na = len(anchors[0]) // 2 # number of anchors
  27. self.grid = [torch.zeros(1)] * self.nl # init grid
  28. a = torch.tensor(anchors).float().view(self.nl, -1, 2)
  29. self.register_buffer('anchors', a) # shape(nl,na,2)
  30. self.register_buffer('anchor_grid', a.clone().view(self.nl, 1, -1, 1, 1, 2)) # shape(nl,1,na,1,1,2)
  31. self.m = nn.ModuleList(nn.Conv2d(x, self.no, 1) for x in ch) # output conv
  32. def forward(self, x):
  33. # x = x.copy() # for profiling
  34. # z = [] # inference output
  35. # # self.training |= self.export
  36. # for i in range(self.nl):
  37. # x[i] = self.m[i](x[i]) # conv
  38. # bs, _, ny, nx = x[i].shape # x(bs,255,20,20) to x(bs,3,20,20,85)
  39. # x[i] = x[i].view(bs, self.na, self.no, ny, nx).permute(0, 1, 3, 4, 2).contiguous()
  40. #
  41. # if not self.training: # inference
  42. # if self.grid[i].shape[2:4] != x[i].shape[2:4]:
  43. # self.grid[i] = self._make_grid(nx, ny).to(x[i].device)
  44. #
  45. # y = x[i].sigmoid()
  46. # y[..., 0:2] = (y[..., 0:2] * 2. - 0.5 + self.grid[i]) * self.stride[i] # xy
  47. # y[..., 2:4] = (y[..., 2:4] * 2) ** 2 * self.anchor_grid[i] # wh
  48. # z.append(y.view(bs, -1, self.no))
  49. prediction = self.m[0](x[0])
  50. point_pred, angle_pred = torch.split(prediction, 4, dim=1)
  51. point_pred = torch.sigmoid(point_pred)
  52. angle_pred = torch.tanh(angle_pred)
  53. return torch.cat((point_pred, angle_pred), dim=1)
  54. @staticmethod
  55. def _make_grid(nx=20, ny=20):
  56. yv, xv = torch.meshgrid([torch.arange(ny), torch.arange(nx)])
  57. return torch.stack((xv, yv), 2).view((1, 1, ny, nx, 2)).float()
  58. class Model(nn.Module):
  59. def __init__(self, cfg='yolov5s.yaml', ch=3, nc=None, anchors=None): # model, input channels, number of classes
  60. super(Model, self).__init__()
  61. if isinstance(cfg, dict):
  62. self.yaml = cfg # model dict
  63. else: # is *.yaml
  64. import yaml # for torch hub
  65. self.yaml_file = Path(cfg).name
  66. with open(cfg) as f:
  67. self.yaml = yaml.load(f, Loader=yaml.SafeLoader) # model dict
  68. # Define model
  69. ch = self.yaml['ch'] = self.yaml.get('ch', ch) # input channels
  70. if nc and nc != self.yaml['nc']:
  71. logger.info(f"Overriding model.yaml nc={self.yaml['nc']} with nc={nc}")
  72. self.yaml['nc'] = nc # override yaml value
  73. if anchors:
  74. logger.info(f'Overriding model.yaml anchors with anchors={anchors}')
  75. self.yaml['anchors'] = round(anchors) # override yaml value
  76. self.model, self.save = parse_model(deepcopy(self.yaml), ch=[ch]) # model, savelist
  77. self.names = [str(i) for i in range(self.yaml['nc'])] # default names
  78. # print([x.shape for x in self.forward(torch.zeros(1, ch, 64, 64))])
  79. # Build strides, anchors
  80. # m = self.model[-1] # Detect()
  81. # if isinstance(m, Detect):
  82. # s = 256 # 2x min stride
  83. # m.stride = torch.tensor([s / x.shape[-2] for x in self.forward(torch.zeros(1, ch, s, s))]) # forward
  84. # m.anchors /= m.stride.view(-1, 1, 1)
  85. # check_anchor_order(m)
  86. # self.stride = m.stride
  87. # self._initialize_biases() # only run once
  88. # print('Strides: %s' % m.stride.tolist())
  89. # Init weights, biases
  90. initialize_weights(self)
  91. self.info()
  92. logger.info('')
  93. def forward(self, x, augment=False, profile=False):
  94. if augment:
  95. img_size = x.shape[-2:] # height, width
  96. s = [1, 0.83, 0.67] # scales
  97. f = [None, 3, None] # flips (2-ud, 3-lr)
  98. y = [] # outputs
  99. for si, fi in zip(s, f):
  100. xi = scale_img(x.flip(fi) if fi else x, si, gs=int(self.stride.max()))
  101. yi = self.forward_once(xi)[0] # forward
  102. # cv2.imwrite(f'img_{si}.jpg', 255 * xi[0].cpu().numpy().transpose((1, 2, 0))[:, :, ::-1]) # save
  103. yi[..., :4] /= si # de-scale
  104. if fi == 2:
  105. yi[..., 1] = img_size[0] - yi[..., 1] # de-flip ud
  106. elif fi == 3:
  107. yi[..., 0] = img_size[1] - yi[..., 0] # de-flip lr
  108. y.append(yi)
  109. return torch.cat(y, 1), None # augmented inference, train
  110. else:
  111. return self.forward_once(x, profile) # single-scale inference, train
  112. def forward_once(self, x, profile=False):
  113. y, dt = [], [] # outputs
  114. for m in self.model:
  115. if m.f != -1: # if not from previous layer
  116. x = y[m.f] if isinstance(m.f, int) else [x if j == -1 else y[j] for j in m.f] # from earlier layers
  117. if profile:
  118. o = thop.profile(m, inputs=(x,), verbose=False)[0] / 1E9 * 2 if thop else 0 # FLOPS
  119. t = time_synchronized()
  120. for _ in range(10):
  121. _ = m(x)
  122. dt.append((time_synchronized() - t) * 100)
  123. print('%10.1f%10.0f%10.1fms %-40s' % (o, m.np, dt[-1], m.type))
  124. x = m(x) # run
  125. y.append(x if m.i in self.save else None) # save output
  126. if profile:
  127. print('%.1fms total' % sum(dt))
  128. return x
  129. def _initialize_biases(self, cf=None): # initialize biases into Detect(), cf is class frequency
  130. # https://arxiv.org/abs/1708.02002 section 3.3
  131. # cf = torch.bincount(torch.tensor(np.concatenate(dataset.labels, 0)[:, 0]).long(), minlength=nc) + 1.
  132. m = self.model[-1] # Detect() module
  133. for mi, s in zip(m.m, m.stride): # from
  134. b = mi.bias.view(m.na, -1) # conv.bias(255) to (3,85)
  135. b.data[:, 4] += math.log(8 / (640 / s) ** 2) # obj (8 objects per 640 image)
  136. b.data[:, 5:] += math.log(0.6 / (m.nc - 0.99)) if cf is None else torch.log(cf / cf.sum()) # cls
  137. mi.bias = torch.nn.Parameter(b.view(-1), requires_grad=True)
  138. def _print_biases(self):
  139. m = self.model[-1] # Detect() module
  140. for mi in m.m: # from
  141. b = mi.bias.detach().view(m.na, -1).T # conv.bias(255) to (3,85)
  142. print(('%6g Conv2d.bias:' + '%10.3g' * 6) % (mi.weight.shape[1], *b[:5].mean(1).tolist(), b[5:].mean()))
  143. # def _print_weights(self):
  144. # for m in self.model.modules():
  145. # if type(m) is Bottleneck:
  146. # print('%10.3g' % (m.w.detach().sigmoid() * 2)) # shortcut weights
  147. def fuse(self): # fuse model Conv2d() + BatchNorm2d() layers
  148. print('Fusing layers... ')
  149. for m in self.model.modules():
  150. if type(m) is Conv and hasattr(m, 'bn'):
  151. m.conv = fuse_conv_and_bn(m.conv, m.bn) # update conv
  152. delattr(m, 'bn') # remove batchnorm
  153. m.forward = m.fuseforward # update forward
  154. self.info()
  155. return self
  156. def nms(self, mode=True): # add or remove NMS module
  157. present = type(self.model[-1]) is NMS # last layer is NMS
  158. if mode and not present:
  159. print('Adding NMS... ')
  160. m = NMS() # module
  161. m.f = -1 # from
  162. m.i = self.model[-1].i + 1 # index
  163. self.model.add_module(name='%s' % m.i, module=m) # add
  164. self.eval()
  165. elif not mode and present:
  166. print('Removing NMS... ')
  167. self.model = self.model[:-1] # remove
  168. return self
  169. def autoshape(self): # add autoShape module
  170. print('Adding autoShape... ')
  171. m = autoShape(self) # wrap model
  172. copy_attr(m, self, include=('yaml', 'nc', 'hyp', 'names', 'stride'), exclude=()) # copy attributes
  173. return m
  174. def info(self, verbose=False, img_size=640): # print model information
  175. model_info(self, verbose, img_size)
  176. def parse_model(d, ch): # model_dict, input_channels(3)
  177. logger.info('\n%3s%18s%3s%10s %-40s%-30s' % ('', 'from', 'n', 'params', 'module', 'arguments'))
  178. anchors, nc, gd, gw = d['anchors'], d['nc'], d['depth_multiple'], d['width_multiple']
  179. na = (len(anchors[0]) // 2) if isinstance(anchors, list) else anchors # number of anchors
  180. # no = na * (nc + 5) # number of outputs = anchors * (classes + 5)
  181. no = 6
  182. layers, save, c2 = [], [], ch[-1] # layers, savelist, ch out
  183. for i, (f, n, m, args) in enumerate(d['backbone'] + d['head']): # from, number, module, args
  184. m = eval(m) if isinstance(m, str) else m # eval strings
  185. for j, a in enumerate(args):
  186. try:
  187. args[j] = eval(a) if isinstance(a, str) else a # eval strings
  188. except:
  189. pass
  190. n = max(round(n * gd), 1) if n > 1 else n # depth gain
  191. if m in [Conv, GhostConv, Bottleneck, GhostBottleneck, SPP, DWConv, MixConv2d, Focus, CrossConv, BottleneckCSP,
  192. C3, C3TR]:
  193. c1, c2 = ch[f], args[0]
  194. if c2 != no: # if not output
  195. c2 = make_divisible(c2 * gw, 8)
  196. args = [c1, c2, *args[1:]]
  197. if m in [BottleneckCSP, C3, C3TR]:
  198. args.insert(2, n) # number of repeats
  199. n = 1
  200. elif m is nn.BatchNorm2d:
  201. args = [ch[f]]
  202. elif m is Concat:
  203. c2 = sum([ch[x] for x in f])
  204. elif m is Detect:
  205. args.append([ch[x] for x in f])
  206. if isinstance(args[1], int): # number of anchors
  207. args[1] = [list(range(args[1] * 2))] * len(f)
  208. elif m is Contract:
  209. c2 = ch[f] * args[0] ** 2
  210. elif m is Expand:
  211. c2 = ch[f] // args[0] ** 2
  212. else:
  213. c2 = ch[f]
  214. m_ = nn.Sequential(*[m(*args) for _ in range(n)]) if n > 1 else m(*args) # module
  215. t = str(m)[8:-2].replace('__main__.', '') # module type
  216. np = sum([x.numel() for x in m_.parameters()]) # number params
  217. m_.i, m_.f, m_.type, m_.np = i, f, t, np # attach index, 'from' index, type, number params
  218. logger.info('%3s%18s%3s%10.0f %-40s%-30s' % (i, f, n, np, t, args)) # print
  219. save.extend(x % i for x in ([f] if isinstance(f, int) else f) if x != -1) # append to savelist
  220. layers.append(m_)
  221. if i == 0:
  222. ch = []
  223. ch.append(c2)
  224. return nn.Sequential(*layers), sorted(save)
  225. if __name__ == '__main__':
  226. parser = argparse.ArgumentParser()
  227. parser.add_argument('--cfg', type=str, default='yolov5s.yaml', help='model.yaml')
  228. parser.add_argument('--device', default='', help='cuda device, i.e. 0 or 0,1,2,3 or cpu')
  229. opt = parser.parse_args()
  230. opt.cfg = check_file(opt.cfg) # check file
  231. set_logging()
  232. device = select_device(opt.device)
  233. # Create model
  234. model = Model(opt.cfg).to(device)
  235. model.train()
  236. # Profile
  237. # img = torch.rand(8 if torch.cuda.is_available() else 1, 3, 640, 640).to(device)
  238. # y = model(img, profile=True)
  239. # Tensorboard
  240. # from torch.utils.tensorboard import SummaryWriter
  241. # tb_writer = SummaryWriter()
  242. # print("Run 'tensorboard --logdir=models/runs' to view tensorboard at http://localhost:6006/")
  243. # tb_writer.add_graph(model.model, img) # add model to tensorboard
  244. # tb_writer.add_image('test', img[0], dataformats='CWH') # add model to tensorboard