tensorflow_tutorials
tensorflow_tutorials copied to clipboard
Creating variables for a new batch every time
I feel that ~~tf.get_variable()~~ has to be used instead of ~~tf.Variable()~~. In each epoch all the mini batches have to interact with same set of weights. But since we are using ~~tf.Variable()~~ for each ~~autoencoder['cost']~~ calculation, we indirectly call the autoencoder function which creates a new set of weights every time we call pkmital@