Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ValueError Traceback (most recent call last)
- <ipython-input-7-63f3b7717b65> in <module>()
- 6
- 7 array_batch_xs= np.reshape(batch_xs, [-1, img_size ])
- ----> 8 array_batch_ys= np.reshape(batch_ys, [-1, img_size ])
- 9
- 10
- C:\ProgramData\Anaconda3\envs\tensorflow\lib\site-packages\numpy\core\fromnumeric.py in reshape(a, newshape, order)
- 230 [5, 6]])
- 231 """
- --> 232 return _wrapfunc(a, 'reshape', newshape, order=order)
- 233
- 234
- C:\ProgramData\Anaconda3\envs\tensorflow\lib\site-packages\numpy\core\fromnumeric.py in _wrapfunc(obj, method, *args, **kwds)
- 55 def _wrapfunc(obj, method, *args, **kwds):
- 56 try:
- ---> 57 return getattr(obj, method)(*args, **kwds)
- 58
- 59 # An AttributeError occurs if the object does not have
- ValueError: cannot reshape array of size 100 into shape (1200)
Advertisement
Add Comment
Please, Sign In to add comment