您好,登錄后才能下訂單哦!
這篇文章主要介紹“怎么用pytorch 計(jì)算Parameter和FLOP”,在日常操作中,相信很多人在怎么用pytorch 計(jì)算Parameter和FLOP問(wèn)題上存在疑惑,小編查閱了各式資料,整理出簡(jiǎn)單好用的操作方法,希望對(duì)大家解答”怎么用pytorch 計(jì)算Parameter和FLOP”的疑惑有所幫助!接下來(lái),請(qǐng)跟著小編一起來(lái)學(xué)習(xí)吧!
1 THOP
在pytorch中有現(xiàn)成的包thop用于計(jì)算參數(shù)數(shù)量和FLOP,首先安裝thop:
pip install thop
注意安裝thop時(shí)可能出現(xiàn)如下錯(cuò)誤:
pip install --upgrade git+https://github.com/Lyken17/pytorch-OpCounter.git # 下載源碼安裝
使用方法如下:
from torchvision.models import resnet50 # 引入ResNet50模型 from thop import profile model = resnet50() flops, params = profile(model, input_size=(1, 3, 224,224)) # profile(模型,輸入數(shù)據(jù))
對(duì)于自己構(gòu)建的函數(shù)也一樣,例如shuffleNetV2
from thop import profile from utils.ShuffleNetV2 import shufflenetv2 # 導(dǎo)入shufflenet2 模塊 import torch model_shuffle = shufflenetv2(width_mult=0.5) model = torch.nn.DataParallel(model_shuffle) # 調(diào)用shufflenet2 模型,該模型為自己定義的 flop, para = profile(model, input_size=(1, 3, 224, 224),) print("%.2fM" % (flop/1e6), "%.2fM" % (para/1e6))
更多細(xì)節(jié),可參考thop GitHub鏈接: https://github.com/Lyken17/pytorch-OpCounter
pytorch本身帶有計(jì)算參數(shù)的方法
from thop import profile from utils.ShuffleNetV2 import shufflenetv2 # 導(dǎo)入shufflenet2 模塊 import torch model_shuffle = shufflenetv2(width_mult=0.5) model = torch.nn.DataParallel(model_shuffle) total = sum([param.nelement() for param in model.parameters()]) print("Number of parameter: %.2fM" % (total / 1e6))
補(bǔ)充:pytorch: 計(jì)算網(wǎng)絡(luò)模型的計(jì)算量(FLOPs)和參數(shù)量(Params)
計(jì)算量:
FLOPs,F(xiàn)LOP時(shí)指浮點(diǎn)運(yùn)算次數(shù),s是指秒,即每秒浮點(diǎn)運(yùn)算次數(shù)的意思,考量一個(gè)網(wǎng)絡(luò)模型的計(jì)算量的標(biāo)準(zhǔn)。
參數(shù)量:
Params,是指網(wǎng)絡(luò)模型中需要訓(xùn)練的參數(shù)總數(shù)。
pip install thop
import torch from thop import profile net = Model() # 定義好的網(wǎng)絡(luò)模型 input = torch.randn(1, 3, 112, 112) flops, params = profile(net, (inputs,)) print('flops: ', flops, 'params: ', params)
輸入input的第一維度是批量(batch size),批量的大小不回影響參數(shù)量, 計(jì)算量是batch_size=1的倍數(shù)
profile(net, (inputs,))的 (inputs,)中必須加上逗號(hào),否者會(huì)報(bào)錯(cuò)
到此,關(guān)于“怎么用pytorch 計(jì)算Parameter和FLOP”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實(shí)踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識(shí),請(qǐng)繼續(xù)關(guān)注億速云網(wǎng)站,小編會(huì)繼續(xù)努力為大家?guī)?lái)更多實(shí)用的文章!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。