You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ImportError Traceback (most recent call last)
in
1 # Reshaping the training data
----> 2 from scipy.misc import imresize
3
4 #X_train_new = np.array([imresize(X_train[i],(200,200,3)) for i in range(0,len(X_train))]).astype('float32')
5 X_train_new = np.array([imresize(X_train[i],(200,200,3)) for i in range(0,100)]).astype('float32')
ImportError: cannot import name 'imresize'
Please let me know how to fix this issue, I have scipy 1.5.2
The text was updated successfully, but these errors were encountered:
ImportError Traceback (most recent call last)
in
1 # Reshaping the training data
----> 2 from scipy.misc import imresize
3
4 #X_train_new = np.array([imresize(X_train[i],(200,200,3)) for i in range(0,len(X_train))]).astype('float32')
5 X_train_new = np.array([imresize(X_train[i],(200,200,3)) for i in range(0,100)]).astype('float32')
ImportError: cannot import name 'imresize'
Please let me know how to fix this issue, I have scipy 1.5.2
The text was updated successfully, but these errors were encountered: