(self, scale=1.1)
| 25 | class Orthogonal(object): |
| 26 | """ benanne lasagne ortho init (faster than qr approach)""" |
| 27 | def __init__(self, scale=1.1): |
| 28 | self.scale = scale |
| 29 | |
| 30 | def __call__(self, shape, name=None): |
| 31 | print 'called orthogonal init with shape', shape |
nothing calls this directly
no outgoing calls
no test coverage detected