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
I have no clue why I get the following error when I am executing: python example_gan.py
Using TensorFlow backend.
Traceback (most recent call last):
File "example_gan.py", line 16, in <module>
from keras_adversarial.legacy import l1l2, Dense, fit
ModuleNotFoundError: No module named 'keras_adversarial.legacy'
I cloned your repo and executed setup.py. The file legacy.py is also in the right folder. Has anybody a suggestion what I can do to fix it?
Thanks in advance!
The text was updated successfully, but these errors were encountered:
The only way I was able to get this to work was to first make sure I didn't have the package installed with pip (I installed via pip rather than cloning the repository as I didn't read the README properly...), so the first thing I did was to uninstall the pip version:
pip uninstall keras_adversarial
Then, I installed it by cloning the repo and using setup.py as per the README.
However, when running python gan_example.py I then got the error:
Hello,
I have no clue why I get the following error when I am executing: python example_gan.py
I cloned your repo and executed setup.py. The file legacy.py is also in the right folder. Has anybody a suggestion what I can do to fix it?
Thanks in advance!
The text was updated successfully, but these errors were encountered: