-
Notifications
You must be signed in to change notification settings - Fork 7
/
calc_flops.py
22 lines (18 loc) · 1.07 KB
/
calc_flops.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from boda.models import YolactConfig, YolactModel
# from boda.lib.torchsummary import summary
from torchinfo import summary
from boda.models.backbone_mobilenetv3 import mobilenet_v3_large, mobilenet_v3_small
from boda.models.backbone_resnet import resnet101, resnet18, resnet34, resnet50
# from torchvision.models import resnet50, mobilenet_v3_large, resnet101
config = YolactConfig(num_classes=90)
# model = YolactModel(config, backbone=mobilenet_v3_small(), selected_backbone_layers=[3, 8, 11]).to('cuda:0')
# model = YolactModel(config, backbone=mobilenet_v3_large(), selected_backbone_layers=[6, 12, 15]).to('cuda:0')
# model = YolactModel(config, backbone=resnet50(), selected_backbone_layers=[1, 2, 3]).to('cuda:0')
# print(summary(model, (1, 3, 550, 550), verbose=0))
# from boda.resnet import resnet101
model = mobilenet_v3_small().to('cuda')
# model = mobilenet_v3_large().to('cuda')
# print(summary(model, input_data=(3, 550, 550), depth=2, verbose=0))
# model = resnet101().to('cuda')
# model = resnet50().to('cuda')
print(summary(model, (1, 3, 224, 224), depth=3, verbose=0))