(self, l1=0., l2=0., maxnorm=0., l2norm=False, frobnorm=False)
| 17 | class Regularizer(object): |
| 18 | |
| 19 | def __init__(self, l1=0., l2=0., maxnorm=0., l2norm=False, frobnorm=False): |
| 20 | self.__dict__.update(locals()) |
| 21 | |
| 22 | def max_norm(self, p, maxnorm): |
| 23 | if maxnorm > 0: |
nothing calls this directly
no outgoing calls
no test coverage detected