需要使用官方库THOP: PyTorch-OpCounter
GitHub 地址:https://github.com/Lyken17/pytorch-OpCounter

1.安装THOP:

pip install thop 
# or
pip install --upgrade git+https://github.com/Lyken17/pytorch-OpCounter.git

2.使用方法:

from torchvision.models import resnet50
from thop import profile
# 增加可读性
from thop import clever_format

# 可替换为自己的模型及输入
model = resnet50()
input = torch.randn(1, 3, 224, 224)
flops, params = profile(model, inputs=(input, ))
flops, params = clever_format([flops, params], "%.3f")
Logo

旨在为数千万中国开发者提供一个无缝且高效的云端环境,以支持学习、使用和贡献开源项目。

更多推荐