为什么tf.keras.utils.get_file API无法获取URL(使用VPN)

时间:2019-08-10 02:33:36

标签: tensorflow keras tf.keras

当我在tensorflow中练习使用tensorflow.keras时,总是发现如下问题。

我使用的是chrome,可以获取图片的网址,但不能在keras.utils.get_file(fname, origin)上使用

import numpy as np
import PIL.Image as Image

grace_hopper = keras.utils.get_file('image.jpg', 'https://storage.googleapis.com/download.tensorflow.org/example_images/grace_hopper.jpg')
grace_hopper = Image.open(grace_hopper).resize(IMAGE_SHAPE)
grace_hopper
  

异常:https://storage.googleapis.com/download.tensorflow.org/example_images/grace_hopper.jpg上的URL提取失败:
  无-[Errno 60]操作超时

0 个答案:

没有答案