文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

pytorch如何实现查看网络参数显存占用量等操作

2023-06-15 01:44

关注

小编给大家分享一下pytorch如何实现查看网络参数显存占用量等操作,希望大家阅读完这篇文章之后都有所收获,下面让我们一起去探讨吧!

1.使用torchstat

pip install torchstat from torchstat import statimport torchvision.models as modelsmodel = models.resnet152()stat(model, (3, 224, 224))

关于stat函数的参数,第一个应该是模型,第二个则是输入尺寸,3为通道数。我没有调研该函数的详细参数,也不知道为什么使用的时候并不提示相应的参数。

2.使用torchsummary

pip install torchsummary from torchsummary import summarysummary(model.cuda(),input_size=(3,32,32),batch_size=-1)

使用该函数直接对参数进行提示,可以发现直接有显式输入batch_size的地方,我自己的感觉好像该函数更好一些。但是!!!不知道为什么,该函数在我的机器上一直报错!!!

TypeError: can't convert CUDA tensor to numpy. Use Tensor.cpu() to copy the tensor to host memory first.

Update:经过论坛咨询,报错的原因找到了,只需要把

pip install torchsummary

修改为

pip install torch-summary

补充:Pytorch查看模型参数并计算模型参数量与可训练参数量

查看模型参数(以AlexNet为例)

import torchimport torch.nn as nnimport torchvisionclass AlexNet(nn.Module):    def __init__(self,num_classes=1000):        super(AlexNet,self).__init__()        self.feature_extraction = nn.Sequential(            nn.Conv2d(in_channels=3,out_channels=96,kernel_size=11,stride=4,padding=2,bias=False),            nn.ReLU(inplace=True),            nn.MaxPool2d(kernel_size=3,stride=2,padding=0),            nn.Conv2d(in_channels=96,out_channels=192,kernel_size=5,stride=1,padding=2,bias=False),            nn.ReLU(inplace=True),            nn.MaxPool2d(kernel_size=3,stride=2,padding=0),            nn.Conv2d(in_channels=192,out_channels=384,kernel_size=3,stride=1,padding=1,bias=False),            nn.ReLU(inplace=True),            nn.Conv2d(in_channels=384,out_channels=256,kernel_size=3,stride=1,padding=1,bias=False),            nn.ReLU(inplace=True),            nn.Conv2d(in_channels=256,out_channels=256,kernel_size=3,stride=1,padding=1,bias=False),            nn.ReLU(inplace=True),            nn.MaxPool2d(kernel_size=3, stride=2, padding=0),        )        self.classifier = nn.Sequential(            nn.Dropout(p=0.5),            nn.Linear(in_features=256*6*6,out_features=4096),            nn.ReLU(inplace=True),            nn.Dropout(p=0.5),            nn.Linear(in_features=4096, out_features=4096),            nn.ReLU(inplace=True),            nn.Linear(in_features=4096, out_features=num_classes),        )    def forward(self,x):        x = self.feature_extraction(x)        x = x.view(x.size(0),256*6*6)        x = self.classifier(x)        return xif __name__ =='__main__':    # model = torchvision.models.AlexNet()    model = AlexNet()        # 打印模型参数    #for param in model.parameters():        #print(param)        #打印模型名称与shape    for name,parameters in model.named_parameters():        print(name,':',parameters.size())
feature_extraction.0.weight : torch.Size([96, 3, 11, 11])feature_extraction.3.weight : torch.Size([192, 96, 5, 5])feature_extraction.6.weight : torch.Size([384, 192, 3, 3])feature_extraction.8.weight : torch.Size([256, 384, 3, 3])feature_extraction.10.weight : torch.Size([256, 256, 3, 3])classifier.1.weight : torch.Size([4096, 9216])classifier.1.bias : torch.Size([4096])classifier.4.weight : torch.Size([4096, 4096])classifier.4.bias : torch.Size([4096])classifier.6.weight : torch.Size([1000, 4096])classifier.6.bias : torch.Size([1000])

计算参数量与可训练参数量

def get_parameter_number(model):    total_num = sum(p.numel() for p in model.parameters())    trainable_num = sum(p.numel() for p in model.parameters() if p.requires_grad)    return {'Total': total_num, 'Trainable': trainable_num}

第三方工具

from torchstat import statimport torchvision.models as modelsmodel = models.alexnet()stat(model, (3, 224, 224))

pytorch如何实现查看网络参数显存占用量等操作

from torchvision.models import alexnetimport torchfrom thop import profilemodel = alexnet()input = torch.randn(1, 3, 224, 224)flops, params = profile(model, inputs=(input, ))print(flops, params)

pytorch如何实现查看网络参数显存占用量等操作

pytorch的优点

1.PyTorch是相当简洁且高效快速的框架;2.设计追求最少的封装;3.设计符合人类思维,它让用户尽可能地专注于实现自己的想法;4.与google的Tensorflow类似,FAIR的支持足以确保PyTorch获得持续的开发更新;5.PyTorch作者亲自维护的论坛 供用户交流和求教问题6.入门简单

看完了这篇文章,相信你对“pytorch如何实现查看网络参数显存占用量等操作”有了一定的了解,如果想了解更多相关知识,欢迎关注编程网行业资讯频道,感谢各位的阅读!

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     807人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     351人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     314人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     433人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     221人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯