MCPcopy Create free account
hub / github.com/NVIDIA/TensorRT / relu_bn

Function relu_bn

tools/tensorflow-quantization/tests/network_pool.py:136–142  ·  view source on GitHub ↗

Block with BN+ReLU

(input)

Source from the content-addressed store, hash-verified

134###### Popular network blocks ################
135##############################################
136def 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
145def bn(input):

Callers 5

inception_blockFunction · 0.85
identity_block_bnFunction · 0.85
merry_28_28Function · 0.85
pippin_28_28Function · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected