Conv bn relu block
ConvBNReLU
Bases: ConvBNAct
Class for Convolution2d-Batchnorm2d-Relu layer. To exclude Batchnorm module use
use_normalization=False
, to exclude Relu activation use use_activation=False
.
It exists to keep backward compatibility and will be superseeded by ConvBNAct in future releases. For new classes please use ConvBNAct instead.
For convolution arguments documentation see nn.Conv2d
.
For batchnorm arguments documentation see nn.BatchNorm2d
.
Source code in V3_2/src/super_gradients/modules/conv_bn_relu_block.py
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 |
|