سپاس از راهنمایی جنابعالی....
من برنامه رو به صورت زیر تغییر دادم
https://pastebin.com/prKYX7Aw
و قسمت آخر رو به صورت زیر اصلاح کردم:
for _ in range(1000):
batch_size=100
batch_xs, batch_ys = next_batch(100,training_images,training_labels)
array_batch_xs= np.reshape(batch_xs, [-1, img_size ])
array_batch_ys= np.reshape(batch_ys, [-1, img_size ])
sess.run(train_step, feed_dict={x: array_batch_xs, y: array_batch_ys})
correct_prediction = tf.equal(tf.argmax(y,1), tf.argmax(y_,1))
correct_prediction = tf.equal(training_images, training_labels)
accuracy = tf.reduce_mean(tf.cast(correct_prediction, tf.float64))
print(sess.run(accuracy, feed_dict={x: test_images, y_: test_labels}))
اما خطای برنامه به صورت زیر هست:
https://pastebin.com/Qah7grws
و خطای زیر :
ValueError: cannot reshape array of size 100 into shape (1200)
ممکنه بفرمایید اشتباهم کجاست؟
سپاس