I have an Some autoencoder
. The model is not important now. Suppose that this model takes as input some image and output the reconstructed image. After training, I would like to see the effect of one tensor on the output. In addition, images are being fed into the autoencoder
through a FIFOQueue
. Therefore, when running the following peace of code:
reconstructed_image = sess.run([deconv_image], feed_dict={mu:my_vector})
where deconv_image
is the output tensor
of the model and mu
is a hidden tensor inside the model; will automatically feed the model with an image from the Queue
.
My question is: would the value inside mu
be replaced by whatever should come from the input image, or, it takes the vector that I fed using the feed_dict
argument.
Any help is much appreciated!!