gpt4 book ai didi

python Ran out of input 异常解决

转载 作者:知者 更新时间:2024-03-13 02:06:49 25 4
gpt4 key购买 nike

Ran out of input

我在pytorch测试DataLoader时报错,代码:

testloader = DataLoader(test, batch_size=16, shuffle=True, num_workers=1)

在遍历testloader时报错,

for data in dataloader:
        inputs, labels = data
        inputs, labels = inputs.to(device), labels.to(device)

解决方法:

num_workers改为0

testloader = DataLoader(test, batch_size=16, shuffle=True, num_workers=0)

下面是网友的案例和解决方法:

某天在用shelve的时候出错了,错误显示:EOFError: Ran out of input

其实经过深究,这个问题有如下几种可能原因:

读完了啊喂!
示例源码:

with open("test.txt","rb") as f:
    print(f.read())
    print(f.read()) #EOFError!

原因:当文件是一个以bytes模式打开的时候ÿ

25 4 0
文章推荐: 读写锁分离实战
文章推荐: Spring依赖注入
文章推荐: 数仓建模—建模工具PdMan
文章推荐: 不可变对象的设计
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com