1 Star 0 Fork 1

Mcflyy/遥感图像

forked from 啊涛涛/遥感图像 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
summary.py 887 Bytes
一键复制 编辑 原始数据 按行查看 历史
bishe 提交于 2022-03-27 15:43 . 目标检测
#--------------------------------------------#
# 该部分代码用于看网络结构
#--------------------------------------------#
from nets.yolo import yolo_body
if __name__ == "__main__":
input_shape = [416, 416, 3]
anchors_mask = [[6, 7, 8], [3, 4, 5], [0, 1, 2]]
num_classes = 80
model = yolo_body(input_shape, anchors_mask, num_classes, backbone="densenet121")
model.summary()
# mobilenetv1 41,005,757
# mobilenetv2 39,124,541
# mobilenetv3 40,043,389
# 修改了PANET的mobilenetv1 12,754,109
# 修改了PANET的mobilenetv2 10,872,893
# 修改了PANET的mobilenetv3 11,791,741
# 修改了PANET的mobilenetv1-0.25 680,381
# 修改了PANET的mobilenetv2-0.5 2,370,541
# 修改了PANET的mobilenetv3-0.75 6,315,309
for i,layer in enumerate(model.layers):
print(i,layer.name)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mcflyy/remote-sensing-image.git
[email protected]:mcflyy/remote-sensing-image.git
mcflyy
remote-sensing-image
遥感图像
master

搜索帮助