(x, name=None)
| 40 | |
| 41 | |
| 42 | def BNLReLU(x, name=None): |
| 43 | x = BatchNorm('bn', x) |
| 44 | return tf.nn.leaky_relu(x, alpha=0.2, name=name) |
| 45 | |
| 46 | |
| 47 | def visualize_tensors(name, imgs, scale_func=lambda x: (x + 1.) * 128., max_outputs=1): |
nothing calls this directly
no test coverage detected