Block with BN+ReLU
(input)
| 134 | ###### Popular network blocks ################ |
| 135 | ############################################## |
| 136 | def relu_bn(input): |
| 137 | """ |
| 138 | Block with BN+ReLU |
| 139 | """ |
| 140 | bn = tf.keras.layers.BatchNormalization()(input) |
| 141 | relu = tf.keras.layers.ReLU()(bn) |
| 142 | return relu |
| 143 | |
| 144 | |
| 145 | def bn(input): |
no outgoing calls
no test coverage detected