1 Star 1 Fork 0

姜山/circuit-component-classification-keras

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
test.py 430 Bytes
一键复制 编辑 原始数据 按行查看 历史
姜山 提交于 2021-10-11 10:23 . update classification & model
#--------------------------------------------#
# 该部分代码只用于看网络结构,并非测试代码
#--------------------------------------------#
from nets.mobilenet import MobileNet
from nets.resnet50 import ResNet50
from nets.vgg16 import VGG16
if __name__ == "__main__":
model = MobileNet([224,224,3], classes=1000)
model.summary()
for i,layer in enumerate(model.layers):
print(i,layer.name)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/buptsg2019/circuit-component-classification-keras.git
git@gitee.com:buptsg2019/circuit-component-classification-keras.git
buptsg2019
circuit-component-classification-keras
circuit-component-classification-keras
master

搜索帮助