Method
__init__
(
self,
depth_radius=None,
bias=None,
alpha=None,
beta=None,
name=None, #'lrn',
)
Source from the content-addressed store, hash-verified
| 48 | """ |
| 49 | |
| 50 | def __init__( |
| 51 | self, |
| 52 | depth_radius=None, |
| 53 | bias=None, |
| 54 | alpha=None, |
| 55 | beta=None, |
| 56 | name=None, #'lrn', |
| 57 | ): |
| 58 | # super(LocalResponseNorm, self).__init__(prev_layer=prev_layer, name=name) |
| 59 | super().__init__(name) |
| 60 | self.depth_radius = depth_radius |
| 61 | self.bias = bias |
| 62 | self.alpha = alpha |
| 63 | self.beta = beta |
| 64 | |
| 65 | logging.info( |
| 66 | "LocalResponseNorm %s: depth_radius: %s, bias: %s, alpha: %s, beta: %s" % |
| 67 | (self.name, str(depth_radius), str(bias), str(alpha), str(beta)) |
| 68 | ) |
| 69 | |
| 70 | def build(self, inputs): |
| 71 | pass |
Callers
nothing calls this directly
Tested by
no test coverage detected