加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
flops.py 465 Bytes
一键复制 编辑 原始数据 按行查看 历史
赖申其 提交于 2023-04-27 11:23 . add train code
import torch
from thop import profile, clever_format
from mobilenetv3 import MobileNetV3_Small, MobileNetV3_Large
if __name__=="__main__":
input = torch.randn(1, 3, 224, 224)
model = MobileNetV3_Small()
model = MobileNetV3_Large()
model.eval()
print(model)
macs, params = profile(model, inputs=(input, ), custom_ops={})
macs, params = clever_format([macs, params], "%.3f")
print('Flops: ', macs)
print('Params: ', params)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化