(self, regularizer=Regularizer(), clipnorm=0.)
| 51 | class Update(object): |
| 52 | |
| 53 | def __init__(self, regularizer=Regularizer(), clipnorm=0.): |
| 54 | self.__dict__.update(locals()) |
| 55 | |
| 56 | def __call__(self, params, grads): |
| 57 | raise NotImplementedError |
nothing calls this directly
no test coverage detected