MCPcopy Create free account
hub / github.com/rushter/MLAlgorithms / __init__

Method __init__

mla/neuralnet/optimizers.py:222–227  ·  view source on GitHub ↗
(self, learning_rate=0.002, beta_1=0.9, beta_2=0.999, epsilon=1e-8)

Source from the content-addressed store, hash-verified

220
221class Adamax(Optimizer):
222 def __init__(self, learning_rate=0.002, beta_1=0.9, beta_2=0.999, epsilon=1e-8):
223 self.epsilon = epsilon
224 self.beta_2 = beta_2
225 self.beta_1 = beta_1
226 self.lr = learning_rate
227 self.t = 1
228
229 def update(self, network):
230 for i, layer in enumerate(network.parametric_layers):

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected