raghakot / keras-vis

Neural network visualization toolkit for keras
https://raghakot.github.io/keras-vis
MIT License
2.97k stars 664 forks source link

Need to update `install_requires` in setup.py #205

Open keisen opened 4 years ago

keisen commented 4 years ago

Version 0.5.0 also introduces keras.backend.identity via this PR

But this isn't introduced in Keras until version 2.0.4.

So the current install_requires=['keras>=2.0', 'six', 'scikit-image', 'matplotlib', 'h5py'] needs to be updated to install_requires=['keras>=2.0.4', 'six', 'scikit-image', 'matplotlib', 'h5py']

Originally posted by @thommiano in https://github.com/raghakot/keras-vis/issues/198#issuecomment-535039953