Error while running a convolutional network using my own data in Tensorflow

后端 未结 1 1785
醉梦人生
醉梦人生 2021-01-23 06:06

I´m a complete beginner in using Tensorflow and machine learning in general, so there are many concepts that I still don´t understand quite well, so sorry if my error is obvious

相关标签:
1条回答
  • 2021-01-23 06:42

    You need to pass enqueue_many=True to tf.train.batch to indicate that you are enqueuing multiple examples at once, otherwise it will treat it as a single example with many features.

    0 讨论(0)
提交回复
热议问题