python [shuffle data]在其命令的打乱数据#python #numpy时对数据集进行洗牌

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python [shuffle data]在其命令的打乱数据#python #numpy时对数据集进行洗牌相关的知识,希望对你有一定的参考价值。

import numpy as np

# shuffle the data.

idx = np.random.permutation(len(x_all))
x_all, y_all = x_all[idx], y_all[idx]

以上是关于python [shuffle data]在其命令的打乱数据#python #numpy时对数据集进行洗牌的主要内容,如果未能解决你的问题,请参考以下文章

求PHP高手解析一下shuffle函数的实现原理

一维数组打乱顺序shuffle函数

使用 tf.data.Dataset 时,Model.fit() 方法的 shuffle 如何处理 Batches?

Spark 3.1.1 shuffle fetch 导致shuffle错位的问题

Spark 3.1.1 shuffle fetch 导致shuffle错位的问题

tf.data.Dataset.shuffle(buffer_size)中buffer_size的理解