Home | History | Annotate | Download | only in keras

Lines Matching refs:rate

124       rate: rate for enforcing the constraint: weights will be
126 `(1 - rate) * norm + rate * norm.clip(min_value, max_value)`.
127 Effectively, this means that rate=1.0 stands for strict
128 enforcement of the constraint, while rate<1.0 means that
144 def __init__(self, min_value=0.0, max_value=1.0, rate=1.0, axis=0):
147 self.rate = rate
153 self.rate * K.clip(norms, self.min_value, self.max_value) +
154 (1 - self.rate) * norms)
161 'rate': self.rate,