溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

python中怎么打亂數(shù)據(jù)

發(fā)布時間:2020-12-04 09:21:56 來源:億速云 閱讀:357 作者:小新 欄目:編程語言

小編給大家分享一下python中怎么打亂數(shù)據(jù),相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!

方法一、打亂索引Index

import numpy as np

index = [i for i in range(len(test_data))] # test_data為測試數(shù)據(jù)

np.random.shuffle(index) # 打亂索引

test_data = test_data[index]

test_label = test_label[index]

方法二:通過數(shù)組來shuffle來打亂

image_list=[]           # list of images label_list=[]           # list of labels temp = np.array([image_list, label_list]) temp = temp.transpose() np.random.shuffle(temp) images = temp[:, 0]     # array of images   (N,) labels = temp[:, 1]

方法三:通過隨機數(shù)打亂

import numpy as np

np.random.seed(12)

np.random.shuffle(test_data)

np.random.seed(12)

np.random.shuffle(test_label)

以上是“python中怎么打亂數(shù)據(jù)”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業(yè)資訊頻道!

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內容。

AI