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.

преди 4 години
преди 4 години
преди 4 години
преди 4 години
преди 4 години
преди 4 години
преди 4 години
преди 4 години
преди 4 години
преди 4 години
преди 4 години
преди 4 години
преди 4 години
преди 4 години
преди 4 години
преди 4 години
преди 4 години
преди 4 години
преди 4 години
преди 4 години
преди 4 години
преди 4 години
преди 4 години
преди 4 години
преди 4 години
преди 4 години
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224
  1. import argparse
  2. import yaml
  3. from models.common import *
  4. class Detect(nn.Module):
  5. def __init__(self, nc=80, anchors=()): # detection layer
  6. super(Detect, self).__init__()
  7. self.stride = None # strides computed during build
  8. self.nc = nc # number of classes
  9. self.no = nc + 5 # number of outputs per anchor
  10. self.nl = len(anchors) # number of detection layers
  11. self.na = len(anchors[0]) // 2 # number of anchors
  12. self.grid = [torch.zeros(1)] * self.nl # init grid
  13. a = torch.tensor(anchors).float().view(self.nl, -1, 2)
  14. self.register_buffer('anchors', a) # shape(nl,na,2)
  15. self.register_buffer('anchor_grid', a.clone().view(self.nl, 1, -1, 1, 1, 2)) # shape(nl,1,na,1,1,2)
  16. self.export = False # onnx export
  17. def forward(self, x):
  18. x = x.copy() # for profiling
  19. z = [] # inference output
  20. self.training |= self.export
  21. for i in range(self.nl):
  22. bs, _, ny, nx = x[i].shape # x(bs,255,20,20) to x(bs,3,20,20,85)
  23. x[i] = x[i].view(bs, self.na, self.no, ny, nx).permute(0, 1, 3, 4, 2).contiguous()
  24. if not self.training: # inference
  25. if self.grid[i].shape[2:4] != x[i].shape[2:4]:
  26. self.grid[i] = self._make_grid(nx, ny).to(x[i].device)
  27. y = x[i].sigmoid()
  28. y[..., 0:2] = (y[..., 0:2] * 2. - 0.5 + self.grid[i].to(x[i].device)) * self.stride[i] # xy
  29. y[..., 2:4] = (y[..., 2:4] * 2) ** 2 * self.anchor_grid[i] # wh
  30. z.append(y.view(bs, -1, self.no))
  31. return x if self.training else (torch.cat(z, 1), x)
  32. @staticmethod
  33. def _make_grid(nx=20, ny=20):
  34. yv, xv = torch.meshgrid([torch.arange(ny), torch.arange(nx)])
  35. return torch.stack((xv, yv), 2).view((1, 1, ny, nx, 2)).float()
  36. class Model(nn.Module):
  37. def __init__(self, model_yaml='yolov5s.yaml'): # cfg, number of classes, depth-width gains
  38. super(Model, self).__init__()
  39. with open(model_yaml) as f:
  40. self.md = yaml.load(f, Loader=yaml.FullLoader) # model dict
  41. # Define model
  42. self.model, self.save, ch = parse_model(self.md, ch=[3]) # model, savelist, ch_out
  43. # print([x.shape for x in self.forward(torch.zeros(1, 3, 64, 64))])
  44. # Build strides, anchors
  45. m = self.model[-1] # Detect()
  46. m.stride = torch.tensor([64 / x.shape[-2] for x in self.forward(torch.zeros(1, 3, 64, 64))]) # forward
  47. m.anchors /= m.stride.view(-1, 1, 1)
  48. self.stride = m.stride
  49. # Init weights, biases
  50. torch_utils.initialize_weights(self)
  51. self._initialize_biases() # only run once
  52. torch_utils.model_info(self)
  53. print('')
  54. def forward(self, x, augment=False, profile=False):
  55. if augment:
  56. img_size = x.shape[-2:] # height, width
  57. s = [0.83, 0.67] # scales
  58. y = []
  59. for i, xi in enumerate((x,
  60. torch_utils.scale_img(x.flip(3), s[0]), # flip-lr and scale
  61. torch_utils.scale_img(x, s[1]), # scale
  62. )):
  63. # cv2.imwrite('img%g.jpg' % i, 255 * xi[0].numpy().transpose((1, 2, 0))[:, :, ::-1])
  64. y.append(self.forward_once(xi)[0])
  65. y[1][..., :4] /= s[0] # scale
  66. y[1][..., 0] = img_size[1] - y[1][..., 0] # flip lr
  67. y[2][..., :4] /= s[1] # scale
  68. return torch.cat(y, 1), None # augmented inference, train
  69. else:
  70. return self.forward_once(x, profile) # single-scale inference, train
  71. def forward_once(self, x, profile=False):
  72. y, dt = [], [] # outputs
  73. for m in self.model:
  74. if m.f != -1: # if not from previous layer
  75. 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
  76. if profile:
  77. import thop
  78. o = thop.profile(m, inputs=(x,), verbose=False)[0] / 1E9 * 2 # FLOPS
  79. t = torch_utils.time_synchronized()
  80. for _ in range(10):
  81. _ = m(x)
  82. dt.append((torch_utils.time_synchronized() - t) * 100)
  83. print('%10.1f%10.0f%10.1fms %-40s' % (o, m.np, dt[-1], m.type))
  84. x = m(x) # run
  85. y.append(x if m.i in self.save else None) # save output
  86. if profile:
  87. print('%.1fms total' % sum(dt))
  88. return x
  89. def _initialize_biases(self, cf=None): # initialize biases into Detect(), cf is class frequency
  90. # cf = torch.bincount(torch.tensor(np.concatenate(dataset.labels, 0)[:, 0]).long(), minlength=nc) + 1.
  91. m = self.model[-1] # Detect() module
  92. for f, s in zip(m.f, m.stride): #  from
  93. mi = self.model[f % m.i]
  94. b = mi.bias.view(m.na, -1) # conv.bias(255) to (3,85)
  95. b[:, 4] += math.log(8 / (640 / s) ** 2) # obj (8 objects per 640 image)
  96. b[:, 5:] += math.log(0.6 / (m.nc - 0.99)) if cf is None else torch.log(cf / cf.sum()) # cls
  97. mi.bias = torch.nn.Parameter(b.view(-1), requires_grad=True)
  98. def _print_biases(self):
  99. m = self.model[-1] # Detect() module
  100. for f in sorted([x % m.i for x in m.f]): #  from
  101. b = self.model[f].bias.detach().view(m.na, -1).T # conv.bias(255) to (3,85)
  102. print(('%g Conv2d.bias:' + '%10.3g' * 6) % (f, *b[:5].mean(1).tolist(), b[5:].mean()))
  103. def fuse(self): # fuse model Conv2d() + BatchNorm2d() layers
  104. print('Fusing layers...')
  105. for m in self.model.modules():
  106. if type(m) is Conv:
  107. m.conv = torch_utils.fuse_conv_and_bn(m.conv, m.bn) # update conv
  108. m.bn = None # remove batchnorm
  109. m.forward = m.fuseforward # update forward
  110. torch_utils.model_info(self)
  111. def parse_model(md, ch): # model_dict, input_channels(3)
  112. print('\n%3s%15s%3s%10s %-40s%-30s' % ('', 'from', 'n', 'params', 'module', 'arguments'))
  113. anchors, nc, gd, gw = md['anchors'], md['nc'], md['depth_multiple'], md['width_multiple']
  114. na = (len(anchors[0]) // 2) # number of anchors
  115. no = na * (nc + 5) # number of outputs = anchors * (classes + 5)
  116. layers, save, c2 = [], [], ch[-1] # layers, savelist, ch out
  117. for i, (f, n, m, args) in enumerate(md['backbone'] + md['head']): # from, number, module, args
  118. m = eval(m) if isinstance(m, str) else m # eval strings
  119. for j, a in enumerate(args):
  120. try:
  121. args[j] = eval(a) if isinstance(a, str) else a # eval strings
  122. except:
  123. pass
  124. n = max(round(n * gd), 1) if n > 1 else n # depth gain
  125. if m in [nn.Conv2d, Conv, Bottleneck, SPP, DWConv, MixConv2d, Focus, ConvPlus, BottleneckCSP, BottleneckLight]:
  126. c1, c2 = ch[f], args[0]
  127. # Normal
  128. # if i > 0 and args[0] != no: # channel expansion factor
  129. # ex = 1.75 # exponential (default 2.0)
  130. # e = math.log(c2 / ch[1]) / math.log(2)
  131. # c2 = int(ch[1] * ex ** e)
  132. # if m != Focus:
  133. c2 = make_divisible(c2 * gw, 8) if c2 != no else c2
  134. # Experimental
  135. # if i > 0 and args[0] != no: # channel expansion factor
  136. # ex = 1 + gw # exponential (default 2.0)
  137. # ch1 = 32 # ch[1]
  138. # e = math.log(c2 / ch1) / math.log(2) # level 1-n
  139. # c2 = int(ch1 * ex ** e)
  140. # if m != Focus:
  141. # c2 = make_divisible(c2, 8) if c2 != no else c2
  142. args = [c1, c2, *args[1:]]
  143. if m is BottleneckCSP:
  144. args.insert(2, n)
  145. n = 1
  146. elif m is nn.BatchNorm2d:
  147. args = [ch[f]]
  148. elif m is Concat:
  149. c2 = sum([ch[x] for x in f])
  150. elif m is Origami:
  151. c2 = ch[f] * 5
  152. elif m is Detect:
  153. f = f or list(reversed([(-1 if j == i else j - 1) for j, x in enumerate(ch) if x == no]))
  154. else:
  155. c2 = ch[f]
  156. m_ = nn.Sequential(*[m(*args) for _ in range(n)]) if n > 1 else m(*args) # module
  157. t = str(m)[8:-2].replace('__main__.', '') # module type
  158. np = sum([x.numel() for x in m_.parameters()]) # number params
  159. m_.i, m_.f, m_.type, m_.np = i, f, t, np # attach index, 'from' index, type, number params
  160. print('%3s%15s%3s%10.0f %-40s%-30s' % (i, f, n, np, t, args)) # print
  161. save.extend(x % i for x in ([f] if isinstance(f, int) else f) if x != -1) # append to savelist
  162. layers.append(m_)
  163. ch.append(c2)
  164. return nn.Sequential(*layers), sorted(save), ch
  165. if __name__ == '__main__':
  166. parser = argparse.ArgumentParser()
  167. parser.add_argument('--cfg', type=str, default='yolov5s.yaml', help='model.yaml')
  168. parser.add_argument('--device', default='', help='cuda device, i.e. 0 or 0,1,2,3 or cpu')
  169. opt = parser.parse_args()
  170. opt.cfg = glob.glob('./**/' + opt.cfg, recursive=True)[0] # find file
  171. device = torch_utils.select_device(opt.device)
  172. # Create model
  173. model = Model(opt.cfg).to(device)
  174. model.train()
  175. # Profile
  176. # img = torch.rand(8 if torch.cuda.is_available() else 1, 3, 640, 640).to(device)
  177. # y = model(img, profile=True)
  178. # print([y[0].shape] + [x.shape for x in y[1]])
  179. # ONNX export
  180. # model.model[-1].export = True
  181. # torch.onnx.export(model, img, f.replace('.yaml', '.onnx'), verbose=True, opset_version=11)
  182. # Tensorboard
  183. # from torch.utils.tensorboard import SummaryWriter
  184. # tb_writer = SummaryWriter()
  185. # print("Run 'tensorboard --logdir=models/runs' to view tensorboard at http://localhost:6006/")
  186. # tb_writer.add_graph(model.model, img) # add model to tensorboard
  187. # tb_writer.add_image('test', img[0], dataformats='CWH') # add model to tensorboard