gpt4 book ai didi

python - 路径函数在 python IDLE 和 google colab 中的工作方式是否不同?

转载 作者:太空宇宙 更新时间:2023-11-03 21:25:49 26 4
gpt4 key购买 nike

我有一段代码,在 IDLE 中执行时可以完美运行,但在 google colab 中执行时,同一段代码会显示错误。

代码片段:

im_path = os.path.join('D:\ANIKET\movie data set sentiment analysis','aclImdb')
train_texts = []
train_labels = []

for category in ['pos','neg']:
train_path = os.path.join(im_path,'train',category)
for fname in sorted(os.listdir(train_path)):
if fname.endswith('.txt'):
with open(os.path.join(train_path, fname),encoding = 'utf8') as f:
train_texts.append(f.read())
train_labels.append(0 if category == 'neg' else 1)

合作实验室错误:

FileNotFoundError                         Traceback (most recent call last)
<ipython-input-3-9c42cfcaed98> in <module>()
19 train_path = os.path.join(im_path,'train',category)
20
---> 21 for fname in sorted(os.listdir(train_path)):
22 if fname.endswith('.txt'):
23

FileNotFoundError: [Errno 2] No such file or directory: 'D:\\ANIKET\\movie data set sentiment analysis/aclImdb/train/pos'

最佳答案

除非您设置本地运行时,否则 Colab 代码将在 Google 的服务器上运行(该服务器可能在 Linux 环境中运行),并且无法访问您的本地文件。

您需要先将这些文件上传到服务器(并调整文件路径),或者需要设置本地运行时。

关于python - 路径函数在 python IDLE 和 google colab 中的工作方式是否不同?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53846992/

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