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,可参考 这里 的权重文件和代码。
参考
收藏