gpt4 book ai didi

python - 在 Colaboratory 中从 Google Drive 加载数据时遇到问题

转载 作者:太空宇宙 更新时间:2023-11-03 11:12:50 24 4
gpt4 key购买 nike

我正在尝试将一些数据从 google drive 加载到我的 colab notebook,但我得到的是一个空列表。

代码:

from google.colab import drive
drive.mount('/content/drive')

import glob
import os

test_path = '/content/gdrive/My Drive/ML/data/cifar-100/test'

#path = os.path.join(test_path, 'class1', '*.jpg')
#path = os.path.join(test_path, 'class1', '*g')
path = os.path.join(test_path, 'class1', '*.*')

files = glob.glob(path)
len(files)

输出:0

数据

enter image description here

enter image description here

谁能告诉我为什么它没有加载,一切似乎都很好

最佳答案

您已将驱动器安装到 /content/drive,但在您的测试路径中您使用的是 /content/gdrive,这将不起作用。您需要使用 /content/drive/My drive/...

test_path = '/content/drive/My Drive/ML/data/cifar-100/test'

参见 here获取更多信息。

希望对您有所帮助!

关于python - 在 Colaboratory 中从 Google Drive 加载数据时遇到问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57213765/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com