keras application 本地运行

在使用Keras时遇到了2.2.2版本中_implement_input_shape方法缺失及python版本问题导致的错误。解决方案包括:用keras_applications替换keras.applications,并使用include_top代替require_flatten。此外,介绍了如何读取本地JSON文件和Keras的.h5模型文件,包括利用get_weights函数查看模型权重以及使用hdf5模块解析.h5文件。
摘要由CSDN通过智能技术生成

1、在导入_obtain_input_shape时,

 from keras.applications.imagenet_utils import _obtain_input_shape

出现错误如下:

ImportError: cannot import name '_obtain_input_shape'

原因是在keras 2.2.2中,keras.applications.imagenet_utils模块不再有_obtain_input_shape方法。解决方法:
将导入语句修改如下

from keras_applications.imagenet_utils import _obtain_input_shape

重点:使用keras_applications代替keras.applications

2.在调用_obtain_input_shape时,

 # Determine proper input shape.
input_shape = _obtain_input_shape(input_shape,
                                  default_size=224,
                                  min_size=32,
                                  data_format=K.image_data_format(),
                                  include_top=include_top or weights)

出现错误如下:

 TypeError: _obtain_input_shape() got an u
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值