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
Hi,
I try to change the import method and it was works,but I am a new in Keras and tensorflow , so i don't know this fix will change final results or not .
densenet121.py line 2 :
change from keras.layers import Input , merge, ZeroPadding2D
to from keras.layers import Input, ZeroPadding2D
densenet121.py line 8 :
add from keras.layers.merge import Concatenate
densenet121.py line 166 :
change concat_feat = merge([concat_feat, x], mode='concat', concat_axis=concat_axis, name='concat_'+str(stage)+'_'+str(branch))
to concat_feat = Concatenate(axis=concat_axis)([concat_feat, x])
Hi, i try to run the test code ,but i meet the above error. Has anyone encountered the same problem?
The text was updated successfully, but these errors were encountered: