1 Star 0 Fork 0

colinchern/deeplabv3-plus-keras

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
test.py 449 Bytes
一键复制 编辑 原始数据 按行查看 历史
Bubbliiiing 提交于 2021-06-30 10:15 . Add files via upload
#------------------------------------------------#
# 该部分代码只用于看网络结构,并非测试代码
# miou测试请看get_miou_prediction.py、miou.py
#------------------------------------------------#
from nets.deeplab import Deeplabv3
if __name__ == "__main__":
model = Deeplabv3(21, [512,512,3], backbone='mobilenet')
model.summary()
for i,layer in enumerate(model.layers):
print(i,layer.name)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/colinchern/deeplabv3-plus-keras.git
git@gitee.com:colinchern/deeplabv3-plus-keras.git
colinchern
deeplabv3-plus-keras
deeplabv3-plus-keras
main

搜索帮助