flops,params=profile(model,inputs=(x,))计算
本文最后更新于:2023年4月7日 下午
计算量:
FLOPs,FLOP时指浮点运算次数,s是指秒,即每秒浮点运算次数的意思,考量一个网络模型的计算量的标准。
参数量:
Params,是指网络模型中需要训练的参数总数。
flops(G) = flops / 1000**3
params(M) = params /1000**2
打赏支持
“如果你觉得我的文章不错,不妨鼓励我继续写作。”
flops,params=profile(model,inputs=(x,))计算
https://dreamoneyou.github.io/2021/flops, params = profile(model, inputs=(x,))计算/