gpt4 book ai didi

python-3.x - 超出 Google Colaboratory : Import Data, 堆栈大小?

转载 作者:行者123 更新时间:2023-12-04 12:06:30 25 4
gpt4 key购买 nike

我正在尝试使用此代码从我的文件夹中导入数据

from google.colab import files

uploaded = files.upload()

for fn in uploaded.keys():
print('User uploaded file "{name}" with length {length} bytes'.format(name=fn, length=len(uploaded[fn])))

但它给了我这个错误:
Traceback (most recent call last) <ipython-input-7-3ff52e25531b> in <module>()
1 from google.colab import files
2
----> 3 uploaded = files.upload()
4
5 #for fn in uploaded.keys():

/usr/local/lib/python3.6/dist-packages/google/colab/files.py in upload()
70 result = _output.eval_js(
71 'google.colab._files._uploadFilesContinue("{output_id}")'.format(
---> 72 output_id=output_id))
73 if result['action'] != 'append':
74 # JS side uses a generator of promises to process all of the files- some

/usr/local/lib/python3.6/dist-packages/google/colab/output/_js.py in eval_js(script, ignore_result)
37 if ignore_result:
38 return
---> 39 return _message.read_reply_from_input(request_id)
40
41

/usr/local/lib/python3.6/dist-packages/google/colab/_message.py in read_reply_from_input(message_id, timeout_sec)
104 reply.get('colab_msg_id') == message_id):
105 if 'error' in reply:
--> 106 raise MessageError(reply['error'])
107 return reply.get('data', None)
108
MessageError: RangeError: Maximum call stack size exceeded.

我不明白。是数据比较大的原因(22578685bytes)还是因为javascript?

最佳答案

我的建议是尝试使用文件浏览器上传文件。 (它使用一种效率更高的独特传输,特别是对于大文件。)

enter image description here

这能解决问题吗?

关于python-3.x - 超出 Google Colaboratory : Import Data, 堆栈大小?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53630073/

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