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
{{ message }}
This repository has been archived by the owner on Sep 18, 2024. It is now read-only.
Was incredibly frustrated with an error popping up out of nowhere today on a script that's worked in the past. Turns out that Pillow 8.3.0 was released today, the same day I created a new virtual environment for my project.
Check that you are up-to-date with the master branch of keras-preprocessing. You can update with: pip install git+git://github.com/keras-team/keras-preprocessing.git --upgrade --no-deps
Provide a link to a GitHub Gist of a Python script that can reproduce your issue (or just copy the script here if it is short).
Traceback:
Traceback (most recent call last):
File "imgTest.py", line 11, in <module>
image_array = image.img_to_array(img)
File "/Users/matthewlehew/Developer/googleimages/imageprojectvenv/lib/python3.8/site-packages/keras/preprocessing/image.py", line 225, in img_to_array
return image.img_to_array(img, data_format=data_format, **kwargs)
File "/Users/matthewlehew/Developer/googleimages/imageprojectvenv/lib/python3.8/site-packages/keras_preprocessing/image/utils.py", line 309, in img_to_array
x = np.asarray(img, dtype=dtype)
File "/Users/matthewlehew/Developer/googleimages/imageprojectvenv/lib/python3.8/site-packages/numpy/core/_asarray.py", line 83, in asarray
return array(a, dtype, copy=False, order=order)
TypeError: __array__() takes 1 positional argument but 2 were given
Reproduce:
Fresh virtual environment (I use Python 3.8).
Install packages:
pip install keras
pip install tensorflow
pip install pillow
Run below script and get traceback listed above.
Ensure keras preprocessing is up to date with master branch, rerun script, and get same traceback:
Go into the site-packages directory of the Python virtual environment, replace the PIL and Pillow-8.3.0.dist-info folders with the PIL and Pillow-8.2.0.dist-info folders from older virtual environment.
Script executes successfully.
Test Script:
This is stripped down from a larger project, but I was able to reproduce with this code:
import numpy as np
from keras.preprocessing import image
img_size = (224, 224)
img = image.load_img('testImage.jpg', target_size=img_size)
image_array = image.img_to_array(img)
The text was updated successfully, but these errors were encountered:
I also have this issue, sadly your fix did not work for me :(
Thanks for logging the ticket
I think I'll try creating a new virtual environment and using an older version of python (I just tried 3.9)
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Was incredibly frustrated with an error popping up out of nowhere today on a script that's worked in the past. Turns out that Pillow 8.3.0 was released today, the same day I created a new virtual environment for my project.
Check that you are up-to-date with the master branch of keras-preprocessing. You can update with:
pip install git+git://github.com/keras-team/keras-preprocessing.git --upgrade --no-deps
Provide a link to a GitHub Gist of a Python script that can reproduce your issue (or just copy the script here if it is short).
Traceback:
Reproduce:
pip install git+git://github.com/keras-team/keras-preprocessing.git --upgrade --no-deps
site-packages
directory of the Python virtual environment, replace thePIL
andPillow-8.3.0.dist-info
folders with thePIL
andPillow-8.2.0.dist-info
folders from older virtual environment.Test Script:
This is stripped down from a larger project, but I was able to reproduce with this code:
The text was updated successfully, but these errors were encountered: