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

Method __init__

lib/updates.py:142–144  ·  view source on GitHub ↗
(self, lr=0.001, b1=0.9, b2=0.999, e=1e-8, l=1-1e-8, *args, **kwargs)

Source from the content-addressed store, hash-verified

140class Adam(Update):
141
142 def __init__(self, lr=0.001, b1=0.9, b2=0.999, e=1e-8, l=1-1e-8, *args, **kwargs):
143 Update.__init__(self, *args, **kwargs)
144 self.__dict__.update(locals())
145
146 def __call__(self, params, cost):
147 updates = []

Callers

nothing calls this directly

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected