Open Guocode opened 5 years ago
i met this problem too, dont know what going go
@Guocode just direct change '_keras_shape' to '.shape' ,then will be fine, i solve it
from keras import backend as K
replace filters = init._keras_shape[channel_axis]
with
filters = init.shape[channel_axis]
@Guocode just direct change '_keras_shape' to '.shape' ,then will be fine, i solve it
how to change in resnet.py?
Environment (please complete the following information):
Error info is following
My model is simply the official torchvision mobilenetv2, what's the problem here?