Fix ParametricSoftplus

This commit is contained in:
Francois Chollet 2015-10-31 10:12:27 -07:00
parent ccdd5d147d
commit 4a6b03403b

@ -74,7 +74,6 @@ class ParametricSoftplus(MaskedLayer):
self.alphas = sharedX(self.alpha_init * np.ones(input_shape))
self.betas = sharedX(self.beta_init * np.ones(input_shape))
self.params = [self.alphas, self.betas]
self._input_shape = input_shape
if self.initial_weights is not None:
self.set_weights(self.initial_weights)