Guest User

Untitled

a guest
Oct 27th, 2017
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.91 KB | None | 0 0
  1. ValueError Traceback (most recent call last)
  2. <ipython-input-7-63f3b7717b65> in <module>()
  3. 6
  4. 7 array_batch_xs= np.reshape(batch_xs, [-1, img_size ])
  5. ----> 8 array_batch_ys= np.reshape(batch_ys, [-1, img_size ])
  6. 9
  7. 10
  8.  
  9. C:\ProgramData\Anaconda3\envs\tensorflow\lib\site-packages\numpy\core\fromnumeric.py in reshape(a, newshape, order)
  10. 230 [5, 6]])
  11. 231 """
  12. --> 232 return _wrapfunc(a, 'reshape', newshape, order=order)
  13. 233
  14. 234
  15.  
  16. C:\ProgramData\Anaconda3\envs\tensorflow\lib\site-packages\numpy\core\fromnumeric.py in _wrapfunc(obj, method, *args, **kwds)
  17. 55 def _wrapfunc(obj, method, *args, **kwds):
  18. 56 try:
  19. ---> 57 return getattr(obj, method)(*args, **kwds)
  20. 58
  21. 59 # An AttributeError occurs if the object does not have
  22.  
  23. ValueError: cannot reshape array of size 100 into shape (1200)
Advertisement
Add Comment
Please, Sign In to add comment