Skip to content

Commit

Permalink
Fix ParametricSoftplus
Browse files Browse the repository at this point in the history
  • Loading branch information
fchollet committed Oct 31, 2015
1 parent ccdd5d1 commit 4a6b034
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion keras/layers/advanced_activations.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,6 @@ def build(self):
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)
Expand Down

0 comments on commit 4a6b034

Please sign in to comment.