1 Star 0 Fork 0

Ye-zixiao/yolo3-pytorch

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
test.py 583 Bytes
一键复制 编辑 原始数据 按行查看 历史
Bubbliiiing 提交于 2021-05-11 16:59 . Add files via upload
#--------------------------------------------#
# 该部分代码只用于看网络结构,并非测试代码
# map测试请看get_dr_txt.py、get_gt_txt.py
# 和get_map.py
#--------------------------------------------#
import torch
from torchsummary import summary
from nets.yolo3 import YoloBody
if __name__ == "__main__":
# 需要使用device来指定网络在GPU还是CPU运行
device = torch.device('cuda' if torch.cuda.is_available() else 'cpu')
m = YoloBody([[1,2,3],[2,3,4],[3,4,5]], 80).to(device)
summary(m, input_size=(3, 416, 416))
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/yezixiao/yolo3-pytorch.git
git@gitee.com:yezixiao/yolo3-pytorch.git
yezixiao
yolo3-pytorch
yolo3-pytorch
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385