当前位置:网站首页>Google Colab装载Google Drive(Google Colab中使用Google Drive)
Google Colab装载Google Drive(Google Colab中使用Google Drive)
2022-07-07 07:19:00 【iioSnail】
文章目录
为什么要在Google Colab中使用Google Drive
一般有如下几个原因:
- 上传慢:本地文件上传到Google Colab中太慢,要是session过期了,可能还要反复上传。但如果把文件传到Google Drive上,那么就可以直接从Google Drive上拿,只需要上传一遍即可。
- 数据丢失:Google Colab会话容易过期,导致模型和训练数据丢失,所以可以定期将数据和模型存到Google Drive中,这样就不怕丢了,而且对于后续接着训练很方便。
- 有些公开的数据集是Google Drive链接,可以很方便的加载它们。
装载Google Drive
当我们进入Colab页面后,点击文件,然后点击装载Google Colab:

之后可能会生成一段代码(也有可能不生成,直接就装载成功了):
from google.colab import drive
drive.mount('/content/drive')
然后运行该代码(第一次会弹出个框进行确认),之后就会发现文件列表多了一个drive文件夹,这下面就是你Google Drive的文件内容:

之后你对该文件夹的操作都会同步到你的Google Drive中。
从Google Drive中下载文件
装载好Google Drive后,直接用里面的文件就行了,例如:
!unzip drive/MyDrive/Datasets/wider_yolo.zip
我这里解压了我Google Drive中Datasets/wider_yolo.zip文件。

写入文件到Google Drive
装载好Google Drive后,只要将文件写入到drive/MyDrive下面的目录下即可。例如:
with open('drive/MyDrive/test.txt', mode='w') as f:
f.write("Deep Learning")
执行完上述命令后,MyDrive目录下生成了test.txt文件。

此时去Google Drive里也可以看到该文件。

Google Colab下载Google Drive共享文件
例如,有这么一个共享文件链接:
https://drive.google.com/file/d/1xmkOQ1p6R2T44yZw55wNivPATAieyja9/view?usp=sharing
然后取出/d/和/view/之间的文件id:1xmkOQ1p6R2T44yZw55wNivPATAieyja9
然后执行下面命令即可:
!gdown --id '1xmkOQ1p6R2T44yZw55wNivPATAieyja9' --output test.txt
边栏推荐
- 一大波开源小抄来袭
- Integer inversion
- [4g/5g/6g topic foundation -147]: Interpretation of the white paper on 6G's overall vision and potential key technologies -2-6g's macro driving force for development
- 喜马拉雅网页版每次暂停后弹窗推荐下载客户端解决办法
- Internship log - day07
- AI moves from perception to intelligent cognition
- 2020浙江省赛
- conda离线创建虚拟环境
- EXT2 file system
- La différence entre viewpager 2 et viewpager et la mise en œuvre de la rotation viewpager 2
猜你喜欢

CentOS installs JDK1.8 and mysql5 and 8 (the same command 58 in the second installation mode is common, opening access rights and changing passwords)

企业实战|复杂业务关系下的银行业运维指标体系建设

Deep understanding of UDP, TCP

ORM--分组查询,聚合查询,查询集QuerySet对象特性

How will fashion brands enter the meta universe?

【原创】程序员团队管理的核心是什么?

EXT2 file system

Sqlplus garbled code problem, find the solution

【ORM框架】

能源路由器入门必读:面向能源互联网的架构和功能
随机推荐
小程序弹出半角遮罩层
First issue of JS reverse tutorial
Future development blueprint of agriculture and animal husbandry -- vertical agriculture + artificial meat
China's first electronic audio category "Yamano electronic audio" digital collection is on sale!
conda离线创建虚拟环境
2020 Zhejiang Provincial Games
How to become a senior digital IC Design Engineer (5-2) theory: ULP low power design technology (Part 1)
EXT2 file system
内存==c语言1
Deep understanding of UDP, TCP
Natapp intranet penetration
C# 初始化程序时查看初始化到哪里了示例
Liunx command
Guys, have you ever encountered the case of losing data when Flink CDC reads mysqlbinlog? Every time the task restarts, there is a probability of losing data
[4g/5g/6g topic foundation -147]: Interpretation of the white paper on 6G's overall vision and potential key technologies -2-6g's macro driving force for development
PostgreSQL创建触发器的时候报错,
Addition, deletion, modification and query of ThinkPHP database
Selenium+bs4 parsing +mysql capturing BiliBili Tarot data
Arcgis操作: 批量修改属性表
2020CCPC威海 J - Steins;Game (sg函数、线性基)