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
There is an error of name mismatching when I wanted to switch the base model to the VGG16. Basically, the problem is that you define the name of model by yourself in the config file, e.g. VGG16, while the real name of VGG model referred by the download is VGG16_ImageNet_Caffe. Then after finish downloading, the program named the model as VGG16 but the other part of main program loads the model via the name VGG16_ImageNet_Caffe.
Obviously, the problem will also happen when loading and using other base models if the program-defined name is different from the name defined by others.
Best wishes!
Lin.
The text was updated successfully, but these errors were encountered:
Hello,
There is an error of name mismatching when I wanted to switch the base model to the VGG16. Basically, the problem is that you define the name of model by yourself in the config file, e.g.
VGG16
, while the real name of VGG model referred by the download isVGG16_ImageNet_Caffe
. Then after finish downloading, the program named the model asVGG16
but the other part of main program loads the model via the nameVGG16_ImageNet_Caffe
.Obviously, the problem will also happen when loading and using other base models if the program-defined name is different from the name defined by others.
Best wishes!
Lin.
The text was updated successfully, but these errors were encountered: