Mask R-CNN Windows运行报错及改正记录

Mask R-CNN Windows运行报错及改正记录

环境

tensorflow1.15.0
Keras
2.3.1
尤其注意这俩:
h5py2.10.0
scikit-image
0.17.2

错误

1.报错信息:

Input image dtype is bool. Interpolation is not defined with bool data type

解决方案:
pip install -U scikit-image==0.16.2

2.报错信息:

File “/home/xxq/anaconda3/envs/maskrcnn/lib/python3.6/site-packages/keras/engine/topology.py”, line 3114, in load_weights_from_hdf5_group_by_name
original_keras_version = f.attrs[‘keras_version’].decode(‘utf8’)
AttributeError: ‘str’ object has no attribute ‘decode’

解决方案:
pip install h5py==2.10.0

3.报错信息:

ValueError: Layer #389 (named “mrcnn_bbox_fc”), weight <tf.Variable ‘mrcnn_bbox_fc/kernel:0’ shape=(1024, 8) dtype=float32> has shape (1024, 8), but the saved weight has shape (1024, 324).

解决:
load_weights时需要exclude几层。
model.load_weights(COCO_MODEL_PATH, by_name=True,
exclude=[“mrcnn_class_logits”, “mrcnn_bbox_fc”, “mrcnn_bbox”, “mrcnn_mask”])

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值