Closed albertvillanova closed 4 years ago
Library file torch_core.py uses PIL.Image in the definition of the function to_image. However it was not previously imported.
torch_core.py
PIL.Image
to_image
Now, torch_core.py includes the import:
from PIL import Image
Check out this pull request on
Review Jupyter notebook visual diffs & provide feedback on notebooks.
Powered by ReviewNB
I'll try to find a fix for that too. I'd rather not intro the dep.
Library file
torch_core.py
usesPIL.Image
in the definition of the functionto_image
. However it was not previously imported.Now,
torch_core.py
includes the import: