将多标签图像从云端硬盘上传到 Google Colab
Posted
技术标签:
【中文标题】将多标签图像从云端硬盘上传到 Google Colab【英文标题】:Uploading multilabel images from Drive to Google Colab 【发布时间】:2021-10-16 05:45:08 【问题描述】:我正在尝试将 png 图像从云端硬盘上传到 Google Colab。 图片数量为 12,000 张,但从云端硬盘上传到 Colab 的过程需要 70 多分钟。
有没有办法让这个过程更快?
from google.colab import drive
drive.mount("/content/gdrive")
import glob
import numpy as np
import os
from PIL import Image
filelist = glob.glob('/somepath/*')
X_train = np.array([np.array((Image.open(fname))) for fname in filelist])
【问题讨论】:
【参考方案1】:尝试将文件复制到 colab,然后使用这些文件,如果它们不够大,无法存储在 colabmachine 上
【讨论】:
以上是关于将多标签图像从云端硬盘上传到 Google Colab的主要内容,如果未能解决你的问题,请参考以下文章
如何将添加到Google表格单元格中的图像保存到Google云端硬盘?
将文件从 Google Cloud Storage 添加到云端硬盘