Jose Javier Munoz Criollo
Results
3
comments of
Jose Javier Munoz Criollo
Hi, thanks for the feedback. I created a PR for this issue.
Same problem here
I had a similar issue. I tried this: ```python import torch import torchvision.models as models MODEL_LIST = { models.resnet: models.resnet.__all__[1:], } for model_type in MODEL_LIST.keys(): for model_name in MODEL_LIST[model_type]: print(model_name)...