pytorch中使用numpy生成随机数每个epoch都一样的问题

举报
冰糖柠萌 发表于 2020/04/20 12:51:18 2020/04/20
【摘要】 最近在使用pytorch做实验的过程中发现,在dataset里面使用numpy生成随机数,每个epoch生成的随机数是一样的。

最近在使用pytorch做实验的过程中发现,在dataset里面使用numpy生成随机数,每个epoch生成的随机数是一样的。比如下面的代码

import numpy as np
import torch
from torch.utils.data import Dataset
from torch.utils.data import DataLoader


class RandomDataset(Dataset):

    def __init__(self):
        pass

    def __getitem__(self, ind):
        return np.random.randint(100)

    def __len__(self):
        return 10


ds = RandomDataset()
ds = DataLoader(ds, 10, shuffle=False, num_workers=1)

total_epoch = 5
for epoch in range(total_epoch):
    for batch in ds:
        print(batch)

输出为

tensor([62, 66, 47, 55, 11, 90, 66, 64, 79, 62])

tensor([62, 66, 47, 55, 11, 90, 66, 64, 79, 62])

tensor([62, 66, 47, 55, 11, 90, 66, 64, 79, 62])

tensor([62, 66, 47, 55, 11, 90, 66, 64, 79, 62])

tensor([62, 66, 47, 55, 11, 90, 66, 64, 79, 62])


通过google搜索发现github上有人提过这个问题 https://github.com/pytorch/pytorch/issues/5059
简单来说就是numpy的随机数生成在多进程的情况下存在问题。因为dataloader内部会启动多进程来读数据。

为了修正问题,我采用的方法是不使用numpy生成随机数,而是使用pytorch的库生成随机数。

import numpy as np
import torch
from torch.utils.data import Dataset
from torch.utils.data import DataLoader


class RandomDataset(Dataset):

    def __init__(self):
        pass

    def __getitem__(self, ind):
        # return np.random.randint(100)
        return torch.randint(0, 100, (1,)).item()

    def __len__(self):
        return 10


ds = RandomDataset()
ds = DataLoader(ds, 10, shuffle=False, num_workers=1)

total_epoch = 5
for epoch in range(total_epoch):
    for batch in ds:
        print(batch)

输出正确

tensor([93, 87, 57, 2, 10, 1, 6, 8, 71, 8])

tensor([76, 57, 73, 97, 85, 20, 1, 11, 25, 27])

tensor([72, 69, 37, 26, 99, 71, 38, 79, 6, 96])

tensor([90, 6, 38, 27, 14, 36, 66, 54, 32, 39])

tensor([72, 18, 7, 36, 45, 8, 74, 33, 17, 15])

【版权声明】本文为华为云社区用户原创内容,转载时必须标注文章的来源(华为云社区)、文章链接、文章作者等基本信息, 否则作者和本社区有权追究责任。如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@huaweicloud.com
  • 点赞
  • 收藏
  • 关注作者

评论(0

0/1000
抱歉,系统识别当前为高风险访问,暂不支持该操作

全部回复

上滑加载中

设置昵称

在此一键设置昵称,即可参与社区互动!

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。