MCPcopy Create free account
hub / github.com/Newmu/dcgan_code / Update

Class Update

lib/updates.py:49–55  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

47
48
49class Update(object):
50
51 def __init__(self, regularizer=Regularizer(), clipnorm=0.):
52 self.__dict__.update(locals())
53
54 def __call__(self, params, grads):
55 raise NotImplementedError
56
57class SGD(Update):
58

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected