Skip to content

Commit

Permalink
Merge pull request #1026 from sygi/mlp-inherits-feedforward-sequence
Browse files Browse the repository at this point in the history
make mlp inherit feedforward-sequence
  • Loading branch information
dwf committed Mar 10, 2016
2 parents 5f09e92 + d5025a8 commit a154af2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion blocks/bricks/sequences.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ def output_dim(self, value):
self.children[-1].output_dim = value


class MLP(Sequence, Initializable, Feedforward):
class MLP(FeedforwardSequence, Initializable):
"""A simple multi-layer perceptron.
Parameters
Expand Down

0 comments on commit a154af2

Please sign in to comment.