Python/keras How to disrupt a given data set

Source: Internet
Author: User
Tags shuffle keras

Given dataset data, the tag label for the data set

index = [I for I in range (len data)]  random.shuffle (index) data = Data[index]label = Label[index]

(1) First, to obtain all index of the data set, is actually 0,1,2,...., num-1 (num is the number of examples in the dataset, note that the Python index is starting from 0, so the first element index is 0, Last element index is num-1)

"Sample number of functions in a DataSet num=sampnum = Len (data)"

index = [I for I in range (len data)]  

    

(2) random order of index scrambling

Random.shuffle (Index)

  

(3) New chaotic data and labels are obtained according to the new sequence index

data = Data[index]label = Label[index]

  

Python/keras How to disrupt a given data set

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.