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
{{ message }}
This repository has been archived by the owner on Jul 1, 2024. It is now read-only.
i use torchvision.models for model zoo
[code]
def Create_Model_From_Zoo(num_classes=4):
model = models.resnet50(pretrained=True)
num_ftrs = model.fc.in_features
model.fc = nn.Linear(num_ftrs,num_classes)
classy_model = ClassyModel.from_model(model)
return classy_model
🚀 Feature
model zoo just like detectron2
Motivation
We can quickly know the accuracy/train time/inference time of each model.
Pitch
just like this, detectron2 model zoo
Alternatives
N/A
Additional context
N/A
The text was updated successfully, but these errors were encountered: