Skip to content

Commit

Permalink
bug fix with gan tutorial
Browse files Browse the repository at this point in the history
  • Loading branch information
Ragav Venkatesan committed Mar 4, 2017
1 parent 868f8ef commit 85f4571
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pantry/tutorials/gan.py
Original file line number Diff line number Diff line change
Expand Up @@ -381,7 +381,7 @@ def deep_gan (dataset, verbose = 1 ):
num_neurons = 40,
filter_shape = (5,5),
poolsize = (2,2),
activation = ('maxout', 'maxout', 2)
activation = ('maxout', 'maxout', 2),
regularize = True,
batch_norm = True,
input_params = net.dropout_layers['D1-x'].params,
Expand All @@ -394,7 +394,7 @@ def deep_gan (dataset, verbose = 1 ):
num_neurons = 100,
filter_shape = (3,3),
poolsize = (2,2),
activation = ('maxout', 'maxout', 2)
activation = ('maxout', 'maxout', 2),
regularize = True,
batch_norm = True,
verbose = verbose
Expand All @@ -404,7 +404,7 @@ def deep_gan (dataset, verbose = 1 ):
id = "D2-z",
origin = "D1-z",
num_neurons = 100,
activation = ('maxout', 'maxout', 2)
activation = ('maxout', 'maxout', 2),
filter_shape = (3,3),
poolsize = (2,2),
regularize = True,
Expand Down

0 comments on commit 85f4571

Please sign in to comment.