colaboratory上添加数据集文件

colaboratory上添加数据集文件

本文介绍了在Google colaboratory上添加数据集文件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试将cifar数据集上传到google colabratory.我由

I am trying to upload cifar data-set to google colabratory. i consists of

我想添加上传多个文件并将其添加到同一位置以对其执行操作

I would like to add upload multiple files and add them to the same place to act on them

推荐答案

您可以上传到某处,之后您可以从代码单元笔记本下载并使用以下shell命令: wget

you could upload somewhere, after that you can download from code cell notebooks and use this shell command: wget

例如:

!wget http://your_domain/your_file.zip

注意:我们使用'!'在笔记本中运行shell命令.

note: we use '!' for running shell command in a notebook.

这篇关于在Google colaboratory上添加数据集文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-05 09:32