来源于 random 包,主要是打乱序列中的元素作用。当要打乱的为序列时有效,但当要打乱的数据为pytorch中的张量的时候,就失效了
import torch
import random
x = torch.arange(10)
y = list(range(10))
print(f'x_before={x}')
random.shuffle(x)
print(f'x_random={x}')
print(f'y_before={y}')
random.shuffle(y)
print(f'y_random={y}')
x_before=tensor([0, 1, 2, 3, 4, 5, 6, 7, 8, 9]) # 张量:打乱前
x_random=tensor([0, 1, 1, 0, 4, 5, 0, 4, 3, 1]) # 张量:打乱后 -> 失败
y_before=[0, 1, 2, 3, 4, 5, 6, 7, 8, 9] # 列表:打乱前
y_random=[6, 5, 9, 3, 4, 1, 8, 2, 0, 7] # 列表:打乱后 -> 成功
在我们用标准的列表的时候,我们将列表用 random.shuffle 的时候,我们可以随机打乱数据 ;但是当我们打乱的对象是张量的时候,就失败了,大家注意避坑。
torch.randperm()
import torch
x = torch.randperm(10)
x = tensor([5, 0, 8, 7, 2, 1, 4, 6, 9, 3])