carpedm20 / DCGAN-tensorflow

A tensorflow implementation of "Deep Convolutional Generative Adversarial Networks"
http://carpedm20.github.io/faces/
MIT License
7.16k stars 2.62k forks source link

Changed resize function; scipy deprecated Issue #351 #352

Closed WasabiThumb closed 5 years ago

WasabiThumb commented 5 years ago

DCGAN attempts to use method scipy.misc.imresize, I had to uninstall scipy and install scipy==1.2.2

In this version, the method still works but is deprecated. Scipy docs suggest using Pillow instead.

This PR replaces the resize function to Pillow's Image.resize

carpedm20 commented 5 years ago

Thanks!