AttributeError: module ‘tensorflow‘ has no attribute ‘space_to_depth‘

应该还是tensorflow2.0 的锅
我的环境是win10,python3.7
我安装的是 tensorflow2.0和keras2.4,然后运行报错了
(吴恩达老师的深度学习第四周第三课)

yolo_model = load_model("model_data/yolov2.h5")

yolo_model.summary()

解决办法:
我终究还是妥协了,把tensorflow降到了 1.14.0 然后 kera降到了 2.3.1

首先卸载安装的 tensorflow2.0和keras2.4
分别在cmd运行

pip uninstall tensorflow
pip uninstall keras

再安装

pip install tensorflow==1.14.0
pip install keras==2.3.1

最后我能运行出来了
AttributeError: module ‘tensorflow‘ has no attribute ‘space_to_depth‘_第1张图片

你可能感兴趣的:(python,tensorflow,tensorflow,深度学习)