3 Star 0 Fork 0

mirrors_bubbliiiing/faster-rcnn-pytorch

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
summary.py 1.29 KB
一键复制 编辑 原始数据 按行查看 历史
Bubbliiiing 提交于 2022-05-01 14:31 . update flops and training steps
#--------------------------------------------#
# 该部分代码用于看网络结构
#--------------------------------------------#
import torch
from thop import clever_format, profile
from torchsummary import summary
from nets.frcnn import FasterRCNN
if __name__ == "__main__":
input_shape = [600, 600]
num_classes = 21
device = torch.device('cuda' if torch.cuda.is_available() else 'cpu')
model = FasterRCNN(num_classes, backbone = 'vgg').to(device)
summary(model, (3, input_shape[0], input_shape[1]))
dummy_input = torch.randn(1, 3, input_shape[0], input_shape[1]).to(device)
flops, params = profile(model.to(device), (dummy_input, ), verbose=False)
#--------------------------------------------------------#
# flops * 2是因为profile没有将卷积作为两个operations
# 有些论文将卷积算乘法、加法两个operations。此时乘2
# 有些论文只考虑乘法的运算次数,忽略加法。此时不乘2
# 本代码选择乘2,参考YOLOX。
#--------------------------------------------------------#
flops = flops * 2
flops, params = clever_format([flops, params], "%.3f")
print('Total GFLOPS: %s' % (flops))
print('Total params: %s' % (params))
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mirrors_bubbliiiing/faster-rcnn-pytorch.git
git@gitee.com:mirrors_bubbliiiing/faster-rcnn-pytorch.git
mirrors_bubbliiiing
faster-rcnn-pytorch
faster-rcnn-pytorch
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385