From 35b7a824ca3449b48cdc6a65915b3a1fe14c8bc9 Mon Sep 17 00:00:00 2001 From: Kundan Kumar Date: Mon, 16 Jan 2017 16:29:15 -0500 Subject: [PATCH] Update mnist_pixelvae_evaluate.py --- mnist_pixelvae_evaluate.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mnist_pixelvae_evaluate.py b/mnist_pixelvae_evaluate.py index 70dc607..0efad71 100755 --- a/mnist_pixelvae_evaluate.py +++ b/mnist_pixelvae_evaluate.py @@ -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))