Skip to content

Commit

Permalink
Update mnist_pixelvae_evaluate.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Kundan Kumar authored Jan 16, 2017
1 parent 887b9d5 commit 35b7a82
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mnist_pixelvae_evaluate.py
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ def Decoder_no_blind(latents, images):
X_v, X_h = next_stacks(images_with_latent, images_with_latent, N_CHANNELS + DIM_1, "Dec.PixInput", filter_size = 7, hstack = "hstack_a", residual = False)

for i in xrange(PIXEL_CNN_LAYERS):
X_v, X_h = next_stacks(X_v, X_h, DIM_PIX, "Dec.Pix"+str(i+1), filter_size = 3)
X_v, X_h = next_stacks(X_v, X_h, DIM_PIX, "Dec.Pix"+str(i+1), filter_size = PIXEL_CNN_FILTER_SIZE)


output = PixCNNGate(lib.ops.conv2d.Conv2D('Dec.PixOut1', input_dim=DIM_PIX, output_dim=2*DIM_1, filter_size=1, inputs=X_h))
Expand Down

0 comments on commit 35b7a82

Please sign in to comment.