Skip to content

Commit

Permalink
Merge pull request #559 from kmike/patch-1
Browse files Browse the repository at this point in the history
fixed example in tutorial
  • Loading branch information
benanne committed Jan 3, 2016
2 parents 3dc3ccd + 32f4874 commit 5031d52
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/user/tutorial.rst
Original file line number Diff line number Diff line change
Expand Up @@ -381,7 +381,7 @@ And finally a 10-unit softmax output layer, again with 50% dropout:
network = lasagne.layers.DenseLayer(
lasagne.layers.dropout(network, p=.5),
num_units=10,
nonlinearity=lasagne.nonlinearities.rectify)
nonlinearity=lasagne.nonlinearities.softmax)
return network
Expand Down

0 comments on commit 5031d52

Please sign in to comment.