Closed
Description
Could you support the network architecture like vgg
, resnet
easily to use. If I want to use resnet
in Pytorch
, I only need to write the following two lines code:
from torchvision import models
model_ft = models.resnet18(pretrained=True)
But in tensorlayer
, I have to define the network architecture by myself and then load the pretrained parameters.