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 downloaded the pretrained model , ddf_add_resnet50.pth.tar and ddf_mul_resnet50.pth.tar.
ddf_model
├── ddf_add_resnet50.pth.tar
├──ddf_mul_resnet50.pth.tar
I use load_checkpoint like
create_model(
'ddf_mul_resnet50',
checkpoint_path='./ddf_mul_resnet50/ddf_mul_resnet50.pth.tar',
pretrained=True,
num_classes=None,
in_chans=3,
global_pool=None,
scriptable='torchscript')
but I get warning
No pretrained weights exist for this model. Using random initialization.
The warning exists even if I use load_checkpoint function like author.
The text was updated successfully, but these errors were encountered:
I downloaded the pretrained model , ddf_add_resnet50.pth.tar and ddf_mul_resnet50.pth.tar.
ddf_model
├── ddf_add_resnet50.pth.tar
├──ddf_mul_resnet50.pth.tar
I use load_checkpoint like
create_model(
'ddf_mul_resnet50',
checkpoint_path='./ddf_mul_resnet50/ddf_mul_resnet50.pth.tar',
pretrained=True,
num_classes=None,
in_chans=3,
global_pool=None,
scriptable='torchscript')
but I get warning
No pretrained weights exist for this model. Using random initialization.
The warning exists even if I use load_checkpoint function like author.
The text was updated successfully, but these errors were encountered: