当我在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]操作超时