我正在尝试在张量流中加载MNIST数据。
import tensorflow as tf
from tensorflow.examples.tutorials.mnist import input_data
mnist = input_data.read_data_sets("MNIST_data/", one_hot=True)错误:
URLError: <urlopen error [WinError 10060] A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond>我是TF的新手,所以任何建议都是很棒的!
发布于 2019-05-06 20:26:09
TimeoutResponseError下载数据通常是由常见的网络问题引起的,
例如:
您应该对此进行调查,因为这种类型的错误可能是由的多个原因引起的
https://stackoverflow.com/questions/56001980
复制相似问题