-
Notifications
You must be signed in to change notification settings - Fork 2.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
can't download inceptionV3 weights in keras #101
Comments
Same for v2 Exception: URL fetch failure on https://github.com/fchollet/deep-learning-models/releases/download/v0.7/inception_resnet_v2_weights_tf_dim_ordering_tf_kernels_notop.h5: None -- [Errno -2] Name or service not known |
I have a question,Exception: URL fetch failure on https://github.com/fchollet/deep-learning-models/releases/download/v0.5/inception_v3_weights_tf_dim_ordering_tf_kernels.h5: None -- [Errno 110] Connection timed out |
Me too.
The error information from the system is as follows: `--------------------------------------------------------------------------- /opt/conda/lib/python3.7/http/client.py in request(self, method, url, body, headers, encode_chunked) /opt/conda/lib/python3.7/http/client.py in _send_request(self, method, url, body, headers, encode_chunked) /opt/conda/lib/python3.7/http/client.py in endheaders(self, message_body, encode_chunked) /opt/conda/lib/python3.7/http/client.py in _send_output(self, message_body, encode_chunked) /opt/conda/lib/python3.7/http/client.py in send(self, data) /opt/conda/lib/python3.7/http/client.py in connect(self) /opt/conda/lib/python3.7/http/client.py in connect(self) /opt/conda/lib/python3.7/socket.py in create_connection(address, timeout, source_address) /opt/conda/lib/python3.7/socket.py in getaddrinfo(host, port, family, type, proto, flags) gaierror: [Errno -3] Temporary failure in name resolution During handling of the above exception, another exception occurred: URLError Traceback (most recent call last) /opt/conda/lib/python3.7/urllib/request.py in urlretrieve(url, filename, reporthook, data) /opt/conda/lib/python3.7/urllib/request.py in urlopen(url, data, timeout, cafile, capath, cadefault, context) /opt/conda/lib/python3.7/urllib/request.py in open(self, fullurl, data, timeout) /opt/conda/lib/python3.7/urllib/request.py in _open(self, req, data) /opt/conda/lib/python3.7/urllib/request.py in _call_chain(self, chain, kind, meth_name, *args) /opt/conda/lib/python3.7/urllib/request.py in https_open(self, req) /opt/conda/lib/python3.7/urllib/request.py in do_open(self, http_class, req, **http_conn_args) URLError: <urlopen error [Errno -3] Temporary failure in name resolution> During handling of the above exception, another exception occurred: Exception Traceback (most recent call last) /opt/conda/lib/python3.7/site-packages/tensorflow/python/keras/applications/inception_v3.py in InceptionV3(include_top, weights, input_tensor, input_shape, pooling, classes, classifier_activation) /opt/conda/lib/python3.7/site-packages/tensorflow/python/keras/utils/data_utils.py in get_file(fname, origin, untar, md5_hash, file_hash, cache_subdir, hash_algorithm, extract, archive_format, cache_dir) Exception: URL fetch failure on https://storage.googleapis.com/tensorflow/keras-applications/inception_v3/inception_v3_weights_tf_dim_ordering_tf_kernels.h5: None -- [Errno -3] Temporary failure in name resolution ` |
Check if the Internet setting of the notebook is ON. |
Download a VPN client for the whole PC network, such as WireGuard (but it and similar applications require a tunnel file.) I downloaded it successfully, but the problem was the error "We're sorry, but this service is not available in your location". |
Hi, I am trying to download weights of inceptionV3 in keras using the command
base_model = InceptionV3(weights = 'imagenet', include_top = False)
. It ended up with Exception Error : Name or Service not known and the download fails.I dont understand whats the problem?
The text was updated successfully, but these errors were encountered: