The only change I made to kera-vis was replacing the import statements
from keras import backend as K
in all python files with
from tensorflow.python.keras._impl.keras import backend as K
This is because I used channels_first and trained my original model with the backend as above. As you can see, the output looks columnar and is odd. Any help?
My grad cam plots are looking very odd. I'm using
The only change I made to
kera-vis
was replacing the import statementsfrom keras import backend as K
in all python files with
from tensorflow.python.keras._impl.keras import backend as K
This is because I used
channels_first
and trained my original model with the backend as above. As you can see, the output looks columnar and is odd. Any help?