Skip to content

Commit

Permalink
iterate seq minibatch description
Browse files Browse the repository at this point in the history
  • Loading branch information
zsdonghao committed Aug 9, 2016
1 parent d001957 commit 62c524e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tensorlayer/layers.py
Original file line number Diff line number Diff line change
Expand Up @@ -930,10 +930,10 @@ class Conv2dLayer(Layer):
... shape = [5, 5, 1, 32], # 32 features for each 5x5 patch
... strides=[1, 1, 1, 1],
... padding='SAME',
... W_init = tf.truncated_normal,
... W_init_args = {'mean' : 1, 'stddev':3},
... b_init = tf.zeros,
... b_init_args = {'name' : 'bias'},
... W_init=tf.truncated_normal_initializer(stddev=5e-2),
... W_init_args={},
... b_init = tf.constant_initializer(value=0.0),
... b_init_args = {},
... name ='cnn_layer1') # output: (?, 28, 28, 32)
>>> network = tl.layers.PoolLayer(network,
... ksize=[1, 2, 2, 1],
Expand Down

0 comments on commit 62c524e

Please sign in to comment.