potterhsu / SVHNClassifier

A TensorFlow implementation of Multi-digit Number Recognition from Street View Imagery using Deep Convolutional Neural Networks (http://arxiv.org/pdf/1312.6082.pdf)
GNU General Public License v3.0
205 stars 75 forks source link

inference_outside_sample.ipynb reshape #14

Open pigubaoza opened 6 years ago

pigubaoza commented 6 years ago

Hi, I found out that using tf.reshape causes errors. For this particular file, there is no need to use tf.reshape. Simply use tf.image.resize_images(image, [54, 54])

asmaaalaa99 commented 5 years ago

Thank you!