ValueError:使用DeepLab demo.ipynb的未知URL类型

时间:2019-06-07 14:35:49

标签: google-colaboratory

我正在使用Google Colab运行Demo DeepLab.ipnyb。演示使图像运行良好。尝试添加自己的图像时,收到错误消息“ ValueError:未知的URL类型:'/ content / harshu-06032019.png'。我看到文件已上传到Colab。

感谢您提供任何有关为什么出现此错误的帮助。

我试图将此文件放入Google云端硬盘,并通过挂载Google云端硬盘授予对Colab的访问权限。那也不行。

但是,如果文件已上传到Google驱动器,则会出现错误“无法检索图像。请检查网址”

这是DeepLabv3 +提供的代码

---------------------------------------------------------------------------
ValueError                                Traceback (most recent call last)
<ipython-input-5-ba1edc5ae51a> in <module>()
     24 
     25 image_url = IMAGE_URL or _SAMPLE_URL % SAMPLE_IMAGE
---> 26 run_visualization(image_url)

5 frames
/usr/lib/python3.6/urllib/request.py in _parse(self)
    382         self.type, rest = splittype(self._full_url)
    383         if self.type is None:
--> 384             raise ValueError("unknown url type: %r" % self.full_url)
    385         self.host, self.selector = splithost(rest)
    386         if self.host:

ValueError: unknown url type: '/content/harshu-06032019.png'

1 个答案:

答案 0 :(得分:0)

要解决此“ ValueError:未知的URL类型:'/content/harshu-06032019.png'”,请按照以下步骤操作:

  1. 从网址路径中删除content
  2. 图像的路径只能是harshu-06032019.png
  3. 运行!ls来查看图像文件是否存在