Skip to content

Commit

Permalink
PReLU layer does not need to dump input_shape as a config parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
jfsantos committed Apr 23, 2015
1 parent 28f6e8a commit b91c1bc
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions keras/layers/advanced_activations.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,4 @@ def output(self, train):
return pos + neg

def get_config(self):
return {"name":self.__class__.__name__,
"input_shape":self.input_shape}
return {"name":self.__class__.__name__}

0 comments on commit b91c1bc

Please sign in to comment.