利用thop计算模型的参数量params和计算量flops

from thop import profile

s = b, c, d, h, w = 1, 3, 5, 224, 224
t = torch.ones(s).cuda()

net = CoarseNet().cuda()
output, spatial_domain_feature = net(t)
F_net = F_net().cuda()
out_f, temporal_domain_feature = F_net(output, t)

flops, params = profile(net,inputs=(t,))
flops1, params1 = profile(F_net,inputs=(output, t,))
print('flops: %.2f M, params: %.2f M' % (flops / 1000000.0, params / 1000000.0))
print('flops: %.2f M, params: %.2f M' % (flops1 / 1000000.0, params1 / 1000000.0))

利用thop计算模型的参数量params和计算量flops。

有多个输入时,只需要将input(output,)更改为input(output1,output2,)即可。非常方便。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值