如何在keras中使用googlenet和alexnet预训练?
0 406
0
该提问暂无详细描述
收藏
2021-02-03 17:38 更新 正直的烤面包 •  4004
共 1 个回答
高赞 时间
0

对于GoogleNet,可以使用configuration.json文件修改选项。

# load the user configs
with open('conf/conf.json') as f:    
   config = json.load(f)

以及 .json 文件:

{
 "model"           : "inceptionv3",
 "weights"         : "imagenet",
 "include_top"     : false,

 ...
 ...
}

对于AlexNet,可参考 这里 的权重文件和代码。

参考

收藏
2021-02-03 17:48 更新 阿托 •  17069