Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

#609 Ci fix

Merged
Ghost merged 1 commits into Deci-AI:master from deci-ai:bugfix/infra-000_ci
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
  1. """EfficientNet model class, based on
  2. "EfficientNet: Rethinking Model Scaling for Convolutional Neural Networks" <https://arxiv.org/abs/1905.11946>`
  3. Code source: https://github.com/lukemelas/EfficientNet-PyTorch
  4. Pre-trained checkpoints converted to Deci's code base with the reported accuracy can be found in S3 repo
  5. """
  6. #######################################################################################################################
  7. # 1. Since each net expects a specific image size, make sure to build the dataset with the correct image size:
  8. # EfficientNetB0 - (224, 256), EfficientNetB1 - (240, 274), EfficientNetB2 - (260, 298), EfficientNetB3 - (300, 342), EfficientNetB4 - (380, 434),
  9. # EfficientNetB5 - (456, 520), EfficientNetB6 - (528, 602), EfficientNetB7 - (600, 684), EfficientNetB8 - (672, 768), EfficientNetL2 - (800, 914)
  10. # You should build the DataSetInterface with the following dictionary:
  11. # ImageNetDatasetInterface(dataset_params = {'crop': 260, 'resize': 298})
  12. # 2. Pre-trained ImageNet models can be found in S3://deci-model-repository-research/efficientnet_b#/ckpt_best.pth
  13. # 3. See example code in experimental/efficientnet/efficientnet_example.py
  14. #######################################################################################################################
  15. import re
  16. import math
  17. import collections
  18. from functools import partial
  19. import torch
  20. from torch import nn
  21. from torch.nn import functional as F
  22. from collections import OrderedDict
  23. from super_gradients.training.utils import HpmStruct
  24. from super_gradients.training.models.sg_module import SgModule
  25. # Parameters for an individual model block
  26. BlockArgs = collections.namedtuple('BlockArgs', [
  27. 'num_repeat', 'kernel_size', 'stride', 'expand_ratio',
  28. 'input_filters', 'output_filters', 'se_ratio', 'id_skip'])
  29. # Set BlockArgs's defaults
  30. BlockArgs.__new__.__defaults__ = (None,) * len(BlockArgs._fields)
  31. def round_filters(filters, width_coefficient, depth_divisor, min_depth):
  32. """Calculate and round number of filters based on width multiplier.
  33. Use width_coefficient, depth_divisor and min_depth.
  34. Args:
  35. filters (int): Filters number to be calculated.
  36. Params from arch_params:
  37. width_coefficient (int): model's width coefficient. Used as the multiplier.
  38. depth_divisor (int): model's depth divisor. Used as the divisor.
  39. and min_depth (int): model's minimal depth, if given.
  40. Returns:
  41. new_filters: New filters number after calculating.
  42. """
  43. if not width_coefficient:
  44. return filters
  45. min_depth = min_depth
  46. filters *= width_coefficient
  47. min_depth = min_depth or depth_divisor # pay attention to this line when using min_depth
  48. # follow the formula transferred from official TensorFlow implementation
  49. new_filters = max(min_depth, int(filters + depth_divisor / 2) // depth_divisor * depth_divisor)
  50. if new_filters < 0.9 * filters: # prevent rounding by more than 10%
  51. new_filters += depth_divisor
  52. return int(new_filters)
  53. def round_repeats(repeats, depth_coefficient):
  54. """Calculate module's repeat number of a block based on depth multiplier.
  55. Use depth_coefficient.
  56. Args:
  57. repeats (int): num_repeat to be calculated.
  58. depth_coefficient (int): the depth coefficient of the model. this func uses it as the multiplier.
  59. Returns:
  60. new repeat: New repeat number after calculating.
  61. """
  62. if not depth_coefficient:
  63. return repeats
  64. # follow the formula transferred from official TensorFlow implementation
  65. return int(math.ceil(depth_coefficient * repeats))
  66. def drop_connect(inputs, p, training):
  67. """Drop connect.
  68. Args:
  69. inputs (tensor: BCWH): Input of this structure.
  70. p (float: 0.0~1.0): Probability of drop connection.
  71. training (bool): The running mode.
  72. Returns:
  73. output: Output after drop connection.
  74. """
  75. assert p >= 0 and p <= 1, 'p must be in range of [0,1]'
  76. if not training:
  77. return inputs
  78. batch_size = inputs.shape[0]
  79. keep_prob = 1 - p
  80. # generate binary_tensor mask according to probability (p for 0, 1-p for 1)
  81. random_tensor = keep_prob
  82. random_tensor += torch.rand([batch_size, 1, 1, 1], dtype=inputs.dtype, device=inputs.device)
  83. binary_tensor = torch.floor(random_tensor)
  84. output = inputs / keep_prob * binary_tensor
  85. return output
  86. def calculate_output_image_size(input_image_size, stride):
  87. """Calculates the output image size when using Conv2dSamePadding with a stride.
  88. Necessary for static padding. Thanks to mannatsingh for pointing this out.
  89. Args:
  90. input_image_size (int, tuple or list): Size of input image.
  91. stride (int, tuple or list): Conv2d operation's stride.
  92. Returns:
  93. output_image_size: A list [H,W].
  94. """
  95. if input_image_size is None:
  96. return None
  97. elif isinstance(input_image_size, int):
  98. input_image_size = (input_image_size, input_image_size)
  99. image_height, image_width = input_image_size
  100. stride = stride if isinstance(stride, int) else stride[0]
  101. image_height = int(math.ceil(image_height / stride))
  102. image_width = int(math.ceil(image_width / stride))
  103. return [image_height, image_width]
  104. # Note:
  105. # The following 'SamePadding' functions make output size equal ceil(input size/stride).
  106. # Only when stride equals 1, can the output size be the same as input size.
  107. # Don't be confused by their function names ! ! !
  108. def get_same_padding_conv2d(image_size=None):
  109. """Chooses static padding if you have specified an image size, and dynamic padding otherwise.
  110. Static padding is necessary for ONNX exporting of models.
  111. Args:
  112. image_size (int or tuple): Size of the image.
  113. Returns:
  114. Conv2dDynamicSamePadding or Conv2dStaticSamePadding.
  115. """
  116. if image_size is None:
  117. return Conv2dDynamicSamePadding
  118. else:
  119. return partial(Conv2dStaticSamePadding, image_size=image_size)
  120. class Conv2dDynamicSamePadding(nn.Conv2d):
  121. """2D Convolutions like TensorFlow, for a dynamic image size.
  122. The padding is operated in forward function by calculating dynamically.
  123. """
  124. # Tips for 'SAME' mode padding.
  125. # Given the following:
  126. # i: width or height
  127. # s: stride
  128. # k: kernel size
  129. # d: dilation
  130. # p: padding
  131. # Output after Conv2d:
  132. # o = floor((i+p-((k-1)*d+1))/s+1)
  133. # If o equals i, i = floor((i+p-((k-1)*d+1))/s+1),
  134. # => p = (i-1)*s+((k-1)*d+1)-i
  135. def __init__(self, in_channels, out_channels, kernel_size, stride=1, dilation=1, groups=1, bias=True):
  136. super().__init__(in_channels, out_channels, kernel_size, stride, 0, dilation, groups, bias)
  137. self.stride = self.stride if len(self.stride) == 2 else [self.stride[0]] * 2
  138. def forward(self, x):
  139. ih, iw = x.size()[-2:]
  140. kh, kw = self.weight.size()[-2:]
  141. sh, sw = self.stride
  142. oh, ow = math.ceil(ih / sh), math.ceil(iw / sw) # change the output size according to stride ! ! !
  143. pad_h = max((oh - 1) * self.stride[0] + (kh - 1) * self.dilation[0] + 1 - ih, 0)
  144. pad_w = max((ow - 1) * self.stride[1] + (kw - 1) * self.dilation[1] + 1 - iw, 0)
  145. if pad_h > 0 or pad_w > 0:
  146. x = F.pad(x, [pad_w // 2, pad_w - pad_w // 2, pad_h // 2, pad_h - pad_h // 2])
  147. return F.conv2d(x, self.weight, self.bias, self.stride, self.padding, self.dilation, self.groups)
  148. class Conv2dStaticSamePadding(nn.Conv2d):
  149. """2D Convolutions like TensorFlow's 'SAME' mode, with the given input image size.
  150. The padding mudule is calculated in construction function, then used in forward.
  151. """
  152. # With the same calculation as Conv2dDynamicSamePadding
  153. def __init__(self, in_channels, out_channels, kernel_size, stride=1, image_size=None, **kwargs):
  154. super().__init__(in_channels, out_channels, kernel_size, stride, **kwargs)
  155. self.stride = self.stride if len(self.stride) == 2 else [self.stride[0]] * 2
  156. # Calculate padding based on image size and save it
  157. assert image_size is not None
  158. ih, iw = (image_size, image_size) if isinstance(image_size, int) else image_size
  159. kh, kw = self.weight.size()[-2:]
  160. sh, sw = self.stride
  161. oh, ow = math.ceil(ih / sh), math.ceil(iw / sw)
  162. pad_h = max((oh - 1) * self.stride[0] + (kh - 1) * self.dilation[0] + 1 - ih, 0)
  163. pad_w = max((ow - 1) * self.stride[1] + (kw - 1) * self.dilation[1] + 1 - iw, 0)
  164. if pad_h > 0 or pad_w > 0:
  165. self.static_padding = nn.ZeroPad2d((pad_w - pad_w // 2, pad_w // 2, pad_h - pad_h // 2, pad_h // 2))
  166. else:
  167. self.static_padding = Identity()
  168. def forward(self, x):
  169. x = self.static_padding(x)
  170. x = F.conv2d(x, self.weight, self.bias, self.stride, self.padding, self.dilation, self.groups)
  171. return x
  172. class Identity(nn.Module):
  173. """Identity mapping.
  174. Send input to output directly.
  175. """
  176. def __init__(self):
  177. super(Identity, self).__init__()
  178. def forward(self, input):
  179. return input
  180. # BlockDecoder: A Class for encoding and decoding BlockArgs
  181. # get_model_params and efficientnet:
  182. # Functions to get BlockArgs and GlobalParams for efficientnet
  183. class BlockDecoder(object):
  184. """Block Decoder for readability, straight from the official TensorFlow repository."""
  185. @staticmethod
  186. def _decode_block_string(block_string):
  187. """Get a block through a string notation of arguments.
  188. Args:
  189. block_string (str): A string notation of arguments.
  190. Examples: 'r1_k3_s11_e1_i32_o16_se0.25_noskip'.
  191. Returns:
  192. BlockArgs: The namedtuple defined at the top of this file.
  193. """
  194. assert isinstance(block_string, str)
  195. ops = block_string.split('_')
  196. options = {}
  197. for op in ops:
  198. splits = re.split(r'(\d.*)', op)
  199. if len(splits) >= 2:
  200. key, value = splits[:2]
  201. options[key] = value
  202. # Check stride
  203. assert (('s' in options and len(options['s']) == 1) or (len(options['s']) == 2 and options['s'][0] == options['s'][1]))
  204. return BlockArgs(
  205. num_repeat=int(options['r']),
  206. kernel_size=int(options['k']),
  207. stride=[int(options['s'][0])],
  208. expand_ratio=int(options['e']),
  209. input_filters=int(options['i']),
  210. output_filters=int(options['o']),
  211. se_ratio=float(options['se']) if 'se' in options else None,
  212. id_skip=('noskip' not in block_string))
  213. @staticmethod
  214. def _encode_block_string(block):
  215. """Encode a block to a string.
  216. Args:
  217. block (namedtuple): A BlockArgs type argument.
  218. Returns:
  219. block_string: A String form of BlockArgs.
  220. """
  221. args = [
  222. 'r%d' % block.num_repeat,
  223. 'k%d' % block.kernel_size,
  224. 's%d%d' % (block.strides[0], block.strides[1]),
  225. 'e%s' % block.expand_ratio,
  226. 'i%d' % block.input_filters,
  227. 'o%d' % block.output_filters
  228. ]
  229. if 0 < block.se_ratio <= 1:
  230. args.append('se%s' % block.se_ratio)
  231. if block.id_skip is False:
  232. args.append('noskip')
  233. return '_'.join(args)
  234. @staticmethod
  235. def decode(string_list):
  236. """Decode a list of string notations to specify blocks inside the network.
  237. Args:
  238. string_list (list[str]): A list of strings, each string is a notation of block.
  239. Returns:
  240. blocks_args: A list of BlockArgs namedtuples of block args.
  241. """
  242. assert isinstance(string_list, list)
  243. blocks_args = []
  244. for block_string in string_list:
  245. blocks_args.append(BlockDecoder._decode_block_string(block_string))
  246. return blocks_args
  247. @staticmethod
  248. def encode(blocks_args):
  249. """Encode a list of BlockArgs to a list of strings.
  250. Args:
  251. blocks_args (list[namedtuples]): A list of BlockArgs namedtuples of block args.
  252. Returns:
  253. block_strings: A list of strings, each string is a notation of block.
  254. """
  255. block_strings = []
  256. for block in blocks_args:
  257. block_strings.append(BlockDecoder._encode_block_string(block))
  258. return block_strings
  259. class MBConvBlock(nn.Module):
  260. """Mobile Inverted Residual Bottleneck Block.
  261. Args:
  262. block_args (namedtuple): BlockArgs.
  263. arch_params (HpmStruct): HpmStruct.
  264. image_size (tuple or list): [image_height, image_width].
  265. References:
  266. [1] https://arxiv.org/abs/1704.04861 (MobileNet v1)
  267. [2] https://arxiv.org/abs/1801.04381 (MobileNet v2)
  268. [3] https://arxiv.org/abs/1905.02244 (MobileNet v3)
  269. """
  270. def __init__(self, block_args, batch_norm_momentum, batch_norm_epsilon, image_size=None):
  271. super().__init__()
  272. self._block_args = block_args
  273. self._bn_mom = 1 - batch_norm_momentum # pytorch's difference from tensorflow
  274. self._bn_eps = batch_norm_epsilon
  275. self.has_se = (self._block_args.se_ratio is not None) and (0 < self._block_args.se_ratio <= 1)
  276. self.id_skip = block_args.id_skip # whether to use skip connection and drop connect
  277. # Expansion phase (Inverted Bottleneck)
  278. inp = self._block_args.input_filters # number of input channels
  279. oup = self._block_args.input_filters * self._block_args.expand_ratio # number of output channels
  280. if self._block_args.expand_ratio != 1:
  281. Conv2d = get_same_padding_conv2d(image_size=image_size)
  282. self._expand_conv = Conv2d(in_channels=inp, out_channels=oup, kernel_size=1, bias=False)
  283. self._bn0 = nn.BatchNorm2d(num_features=oup, momentum=self._bn_mom, eps=self._bn_eps)
  284. # Depthwise convolution phase
  285. k = self._block_args.kernel_size
  286. s = self._block_args.stride
  287. Conv2d = get_same_padding_conv2d(image_size=image_size)
  288. self._depthwise_conv = Conv2d(
  289. in_channels=oup, out_channels=oup, groups=oup, # groups makes it depthwise
  290. kernel_size=k, stride=s, bias=False)
  291. self._bn1 = nn.BatchNorm2d(num_features=oup, momentum=self._bn_mom, eps=self._bn_eps)
  292. image_size = calculate_output_image_size(image_size, s)
  293. # Squeeze and Excitation layer, if desired
  294. if self.has_se:
  295. Conv2d = get_same_padding_conv2d(image_size=(1, 1))
  296. num_squeezed_channels = max(1, int(self._block_args.input_filters * self._block_args.se_ratio))
  297. self._se_reduce = Conv2d(in_channels=oup, out_channels=num_squeezed_channels, kernel_size=1)
  298. self._se_expand = Conv2d(in_channels=num_squeezed_channels, out_channels=oup, kernel_size=1)
  299. # Pointwise convolution phase
  300. final_oup = self._block_args.output_filters
  301. Conv2d = get_same_padding_conv2d(image_size=image_size)
  302. self._project_conv = Conv2d(in_channels=oup, out_channels=final_oup, kernel_size=1, bias=False)
  303. self._bn2 = nn.BatchNorm2d(num_features=final_oup, momentum=self._bn_mom, eps=self._bn_eps)
  304. self._swish = nn.functional.silu
  305. def forward(self, inputs, drop_connect_rate=None):
  306. """MBConvBlock's forward function.
  307. Args:
  308. inputs (tensor): Input tensor.
  309. drop_connect_rate (bool): Drop connect rate (float, between 0 and 1).
  310. Returns:
  311. Output of this block after processing.
  312. """
  313. # Expansion and Depthwise Convolution
  314. x = inputs
  315. if self._block_args.expand_ratio != 1:
  316. x = self._expand_conv(inputs)
  317. x = self._bn0(x)
  318. x = self._swish(x)
  319. x = self._depthwise_conv(x)
  320. x = self._bn1(x)
  321. x = self._swish(x)
  322. # Squeeze and Excitation
  323. if self.has_se:
  324. x_squeezed = F.adaptive_avg_pool2d(x, 1)
  325. x_squeezed = self._se_reduce(x_squeezed)
  326. x_squeezed = self._swish(x_squeezed)
  327. x_squeezed = self._se_expand(x_squeezed)
  328. x = torch.sigmoid(x_squeezed) * x
  329. # Pointwise Convolution
  330. x = self._project_conv(x)
  331. x = self._bn2(x)
  332. # Skip connection and drop connect
  333. input_filters, output_filters = self._block_args.input_filters, self._block_args.output_filters
  334. if self.id_skip and self._block_args.stride == 1 and input_filters == output_filters:
  335. # The combination of skip connection and drop connect brings about stochastic depth.
  336. if drop_connect_rate:
  337. x = drop_connect(x, p=drop_connect_rate, training=self.training)
  338. x = x + inputs # skip connection
  339. return x
  340. class EfficientNet(SgModule):
  341. """EfficientNet model.
  342. Args:
  343. blocks_args (list[namedtuple]): A list of BlockArgs to construct blocks.
  344. arch_params (HpmStruct): A set of global params shared between blocks.
  345. References:
  346. [1] https://arxiv.org/abs/1905.11946 (EfficientNet)
  347. """
  348. def __init__(self, blocks_args=None, arch_params=None):
  349. super().__init__()
  350. assert isinstance(blocks_args, list), 'blocks_args should be a list'
  351. assert len(blocks_args) > 0, 'block args must be greater than 0'
  352. self._arch_params = arch_params
  353. self._blocks_args = blocks_args
  354. self.backbone_mode = arch_params.backbone_mode
  355. # Batch norm parameters
  356. bn_mom = 1 - self._arch_params.batch_norm_momentum
  357. bn_eps = self._arch_params.batch_norm_epsilon
  358. # Get stem static or dynamic convolution depending on image size
  359. image_size = arch_params.image_size
  360. Conv2d = get_same_padding_conv2d(image_size=image_size)
  361. # Stem
  362. in_channels = 3 # rgb
  363. out_channels = round_filters(32, self._arch_params.width_coefficient, self._arch_params.depth_divisor,
  364. self._arch_params.min_depth) # number of output channels
  365. self._conv_stem = Conv2d(in_channels, out_channels, kernel_size=3, stride=2, bias=False)
  366. self._bn0 = nn.BatchNorm2d(num_features=out_channels, momentum=bn_mom, eps=bn_eps)
  367. image_size = calculate_output_image_size(image_size, 2)
  368. # Build blocks
  369. self._blocks = nn.ModuleList([])
  370. for block_args in self._blocks_args:
  371. # Update block input and output filters based on depth multiplier.
  372. block_args = block_args._replace(
  373. input_filters=round_filters(block_args.input_filters, self._arch_params.width_coefficient,
  374. self._arch_params.depth_divisor, self._arch_params.min_depth),
  375. output_filters=round_filters(block_args.output_filters, self._arch_params.width_coefficient,
  376. self._arch_params.depth_divisor, self._arch_params.min_depth),
  377. num_repeat=round_repeats(block_args.num_repeat, self._arch_params.depth_coefficient))
  378. # The first block needs to take care of stride and filter size increase.
  379. self._blocks.append(MBConvBlock(block_args, self._arch_params.batch_norm_momentum,
  380. self._arch_params.batch_norm_epsilon, image_size=image_size))
  381. image_size = calculate_output_image_size(image_size, block_args.stride)
  382. if block_args.num_repeat > 1: # modify block_args to keep same output size
  383. block_args = block_args._replace(input_filters=block_args.output_filters, stride=1)
  384. for _ in range(block_args.num_repeat - 1):
  385. self._blocks.append(MBConvBlock(block_args, self._arch_params.batch_norm_momentum,
  386. self._arch_params.batch_norm_epsilon, image_size=image_size))
  387. # image_size = calculate_output_image_size(image_size, block_args.stride) # stride = 1
  388. # Head
  389. in_channels = block_args.output_filters # output of final block
  390. out_channels = round_filters(1280, self._arch_params.width_coefficient, self._arch_params.depth_divisor,
  391. self._arch_params.min_depth)
  392. Conv2d = get_same_padding_conv2d(image_size=image_size)
  393. self._conv_head = Conv2d(in_channels, out_channels, kernel_size=1, bias=False)
  394. self._bn1 = nn.BatchNorm2d(num_features=out_channels, momentum=bn_mom, eps=bn_eps)
  395. # Final linear layer
  396. if not self.backbone_mode:
  397. self._avg_pooling = nn.AdaptiveAvgPool2d(1)
  398. self._dropout = nn.Dropout(self._arch_params.dropout_rate)
  399. self._fc = nn.Linear(out_channels, self._arch_params.num_classes)
  400. self._swish = nn.functional.silu
  401. def extract_features(self, inputs):
  402. """
  403. Use convolution layer to extract feature.
  404. Args:
  405. inputs (tensor): Input tensor.
  406. Returns:
  407. Output of the final convolution.
  408. layer in the efficientnet model.
  409. """
  410. # Stem
  411. x = self._swish(self._bn0(self._conv_stem(inputs)))
  412. # Blocks
  413. for idx, block in enumerate(self._blocks):
  414. drop_connect_rate = self._arch_params.drop_connect_rate
  415. if drop_connect_rate:
  416. drop_connect_rate *= float(idx) / len(self._blocks) # scale drop connect_rate
  417. x = block(x, drop_connect_rate=drop_connect_rate)
  418. # Head
  419. x = self._swish(self._bn1(self._conv_head(x)))
  420. return x
  421. def forward(self, inputs):
  422. """EfficientNet's forward function.
  423. Calls extract_features to extract features, applies final linear layer, and returns logits.
  424. Args:
  425. inputs (tensor): Input tensor.
  426. Returns:
  427. Output of this model after processing.
  428. """
  429. bs = inputs.size(0)
  430. # Convolution layers
  431. x = self.extract_features(inputs)
  432. # Pooling and final linear layer, not needed for backbone mode
  433. if not self.backbone_mode:
  434. x = self._avg_pooling(x)
  435. x = x.view(bs, -1)
  436. x = self._dropout(x)
  437. x = self._fc(x)
  438. return x
  439. def replace_head(self, new_num_classes=None, new_head=None):
  440. if new_num_classes is None and new_head is None:
  441. raise ValueError("At least one of new_num_classes, new_head must be given to replace output layer.")
  442. if new_head is not None:
  443. self._fc = new_head
  444. else:
  445. self._fc = nn.Linear(self._fc.in_features, new_num_classes)
  446. def load_state_dict(self, state_dict, strict=True):
  447. """
  448. load_state_dict - Overloads the base method and calls it to load a modified dict for usage as a backbone
  449. :param state_dict: The state_dict to load
  450. :param strict: strict loading (see super() docs)
  451. """
  452. pretrained_model_weights_dict = state_dict.copy()
  453. if self.backbone_mode:
  454. # FIRST LET'S POP THE LAST TWO LAYERS - NO NEED TO LOAD THEIR VALUES SINCE THEY ARE IRRELEVANT AS A BACKBONE
  455. pretrained_model_weights_dict.popitem()
  456. pretrained_model_weights_dict.popitem()
  457. pretrained_backbone_weights_dict = OrderedDict()
  458. for layer_name, weights in pretrained_model_weights_dict.items():
  459. # GET THE LAYER NAME WITHOUT THE 'module.' PREFIX
  460. name_without_module_prefix = layer_name.split('module.')[1]
  461. # MAKE SURE THESE ARE NOT THE FINAL LAYERS
  462. pretrained_backbone_weights_dict[name_without_module_prefix] = weights
  463. pretrained_model_weights_dict = pretrained_backbone_weights_dict
  464. # RETURNING THE UNMODIFIED/MODIFIED STATE DICT DEPENDING ON THE backbone_mode VALUE
  465. super().load_state_dict(pretrained_model_weights_dict, strict)
  466. def get_efficientnet_params(width: float, depth: float, res: float, dropout: float, arch_params: HpmStruct):
  467. print(f"\nNOTICE: \nachieving EfficientNet\'s reported accuracy requires specific image resolution."
  468. f"\nPlease verify image size is {res}x{res} for this specific EfficientNet configuration\n")
  469. # Blocks args for the whole model(efficientnet-EfficientNetB0 by default)
  470. # It will be modified in the construction of EfficientNet Class according to model
  471. blocks_args = BlockDecoder.decode(['r1_k3_s11_e1_i32_o16_se0.25', 'r2_k3_s22_e6_i16_o24_se0.25',
  472. 'r2_k5_s22_e6_i24_o40_se0.25', 'r3_k3_s22_e6_i40_o80_se0.25',
  473. 'r3_k5_s11_e6_i80_o112_se0.25', 'r4_k5_s22_e6_i112_o192_se0.25',
  474. 'r1_k3_s11_e6_i192_o320_se0.25', ])
  475. # Default values
  476. arch_params_new = HpmStruct(**{"width_coefficient": width, "depth_coefficient": depth, "image_size": res,
  477. "dropout_rate": dropout, "num_classes": arch_params.num_classes,
  478. "batch_norm_momentum": 0.99, "batch_norm_epsilon": 1e-3, "drop_connect_rate": 0.2,
  479. "depth_divisor": 8, "min_depth": None, "backbone_mode": False})
  480. # Update arch_params
  481. arch_params_new.override(**arch_params.to_dict())
  482. return blocks_args, arch_params_new
  483. class EfficientNetB0(EfficientNet):
  484. def __init__(self, arch_params):
  485. blocks_args, arch_params = get_efficientnet_params(width=1.0, depth=1.0, res=224, dropout=0.2, arch_params=arch_params)
  486. super().__init__(blocks_args=blocks_args, arch_params=arch_params)
  487. class EfficientNetB1(EfficientNet):
  488. def __init__(self, arch_params):
  489. blocks_args, arch_params = get_efficientnet_params(width=1.0, depth=1.1, res=240, dropout=0.2, arch_params=arch_params)
  490. super().__init__(blocks_args=blocks_args, arch_params=arch_params)
  491. class EfficientNetB2(EfficientNet):
  492. def __init__(self, arch_params):
  493. blocks_args, arch_params = get_efficientnet_params(width=1.1, depth=1.2, res=260, dropout=0.3, arch_params=arch_params)
  494. super().__init__(blocks_args=blocks_args, arch_params=arch_params)
  495. class EfficientNetB3(EfficientNet):
  496. def __init__(self, arch_params):
  497. blocks_args, arch_params = get_efficientnet_params(width=1.2, depth=1.4, res=300, dropout=0.3, arch_params=arch_params)
  498. super().__init__(blocks_args=blocks_args, arch_params=arch_params)
  499. class EfficientNetB4(EfficientNet):
  500. def __init__(self, arch_params):
  501. blocks_args, arch_params = get_efficientnet_params(width=1.4, depth=1.8, res=380, dropout=0.4, arch_params=arch_params)
  502. super().__init__(blocks_args=blocks_args, arch_params=arch_params)
  503. class EfficientNetB5(EfficientNet):
  504. def __init__(self, arch_params):
  505. blocks_args, arch_params = get_efficientnet_params(width=1.6, depth=2.2, res=456, dropout=0.4, arch_params=arch_params)
  506. super().__init__(blocks_args=blocks_args, arch_params=arch_params)
  507. class EfficientNetB6(EfficientNet):
  508. def __init__(self, arch_params):
  509. blocks_args, arch_params = get_efficientnet_params(width=1.8, depth=2.6, res=528, dropout=0.5, arch_params=arch_params)
  510. super().__init__(blocks_args=blocks_args, arch_params=arch_params)
  511. class EfficientNetB7(EfficientNet):
  512. def __init__(self, arch_params):
  513. blocks_args, arch_params = get_efficientnet_params(width=2.0, depth=3.1, res=600, dropout=0.5, arch_params=arch_params)
  514. super().__init__(blocks_args=blocks_args, arch_params=arch_params)
  515. class EfficientNetB8(EfficientNet):
  516. def __init__(self, arch_params):
  517. blocks_args, arch_params = get_efficientnet_params(width=2.2, depth=3.6, res=672, dropout=0.5, arch_params=arch_params)
  518. super().__init__(blocks_args=blocks_args, arch_params=arch_params)
  519. class EfficientNetL2(EfficientNet):
  520. def __init__(self, arch_params):
  521. blocks_args, arch_params = get_efficientnet_params(width=4.3, depth=5.3, res=800, dropout=0.5, arch_params=arch_params)
  522. super().__init__(blocks_args=blocks_args, arch_params=arch_params)
  523. class CustomizedEfficientnet(EfficientNet):
  524. def __init__(self, arch_params):
  525. blocks_args, arch_params = get_efficientnet_params(width=arch_params.width_coefficient,
  526. depth=arch_params.depth_coefficient,
  527. res=arch_params.res,
  528. dropout=arch_params.dropout_rate,
  529. arch_params=arch_params)
  530. super().__init__(blocks_args=blocks_args, arch_params=arch_params)
Discard
Tip!

Press p or to see the previous file or, n or to see the next file