Traceback (most recent call last): File "D:\pythonProject\猫狗识别\MobileNet.py", line 67, in <module> base_model = keras.applications.MobileNet(input_shape=(224,224,3),include_top=False, weights='imagenet') File "D:\anaconda\anaconda\envs\k1\lib\site-packages\keras\src\applications\mobilenet.py", line 328, in MobileNet weights_path = data_utils.get_file( File "D:\anaconda\anaconda\envs\k1\lib\site-packages\keras\src\utils\data_utils.py", line 351, in get_file raise Exception(error_msg.format(origin, e.errno, e.reason)) Exception: URL fetch failure on https://storage.googleapis.com/tensorflow/keras-applications/mobilenet/mobilenet_1_0_224_tf_no_top.h5: None -- [WinError 10061] 由于目标计算机积极拒绝,无法连接。
时间: 2023-07-22 07:10:50 浏览: 91
Mac下anaconda中Spyder打开报错Traceback(most recent call last)…问题
5星 · 资源好评率100%
这个错误提示表明在下载 MobileNet 模型的权重文件时出现了连接错误,可能是由于网络连接问题或目标计算机拒绝了连接。
首先,确保你的网络连接是正常的,可以尝试使用浏览器或其他工具访问该 URL(https://storage.googleapis.com/tensorflow/keras-applications/mobilenet/mobilenet_1_0_224_tf_no_top.h5)来验证是否可以正常下载文件。
如果你的网络连接正常,但仍然无法下载文件,可能是目标计算机设置了防火墙或其他安全策略,导致无法连接。***
阅读全文