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

Method __init__

lib/updates.py:120–122  ·  view source on GitHub ↗
(self, lr=0.001, rho=0.9, epsilon=1e-6, *args, **kwargs)

Source from the content-addressed store, hash-verified

118class RMSprop(Update):
119
120 def __init__(self, lr=0.001, rho=0.9, epsilon=1e-6, *args, **kwargs):
121 Update.__init__(self, *args, **kwargs)
122 self.__dict__.update(locals())
123
124 def __call__(self, params, cost):
125 updates = []

Callers

nothing calls this directly

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected