登录 注册
当前位置:主页 > 资源下载 > 49 > PyTorch-OpCounter:用于计算PyTorch模型MAC FLOP的工具

PyTorch-OpCounter:用于计算PyTorch模型MAC FLOP的工具

  • 更新:2024-07-30 19:14:26
  • 大小:14KB
  • 推荐:★★★★★
  • 来源:网友上传分享
  • 类别:其它 - 开发技术
  • 格式:ZIP

资源介绍

思路:PyTorch-OpCounter 如何安装 pip install thop (现在在上持续) 或者 pip install --upgrade git+https://github.com/Lyken17/pytorch-OpCounter.git 如何使用 基本用法 from torchvision . models import resnet50 from thop import profile model = resnet50 () input = torch . randn ( 1 , 3 , 224 , 224 ) macs , params = profile ( model , inputs = ( input , )) 定义第三方模块的规则。 class YourModule ( nn . Module ): # your definition d