projected-gan icon indicating copy to clipboard operation
projected-gan copied to clipboard

colab doesn't work

Open dkoes opened this issue 3 years ago • 2 comments

Trying to run the example colab notebook fails with the error AttributeError: 'EfficientNet' object has no attribute 'act1'

This is because there is no act1 attribute in the model returned by timm.create_model('tf_efficientnet_lite0', pretrained=True)

It is also the case that this model only has 7 blocks, yet _make_efficientnet seems to assume there's at least nine, which is concerning:

def _make_efficientnet(model):
    pretrained = nn.Module()
    pretrained.layer0 = nn.Sequential(model.conv_stem, model.bn1, model.act1, *model.blocks[0:2])
    pretrained.layer1 = nn.Sequential(*model.blocks[2:3])
    pretrained.layer2 = nn.Sequential(*model.blocks[3:5])
    pretrained.layer3 = nn.Sequential(*model.blocks[5:9])
    return pretrained

dkoes avatar Jul 28 '22 16:07 dkoes

  • #88

woctezuma avatar Jul 30 '22 17:07 woctezuma

!pip install timm==0.5.4 try this

nhatdfo avatar Dec 20 '22 10:12 nhatdfo