-
Notifications
You must be signed in to change notification settings - Fork 4
shuffle
Ned Taylor edited this page Feb 17, 2024
·
1 revision
shuffle(
data=None
label=None,
dim=None,
seed=0
)
The shuffle interface offers a method of randomly shuffling input and label/output data.
Shuffle is an interface to multiple procedures, depending on the types, and whether input and label data is provided.
- data: An integer or real array of dimensions n (n=1..5). The input features dataset.
- label: Optional: An integer or real array of dimension 1. The input dataset labels (expected output).
-
dim: An integer scalar. The dimension of
dataalong which unique samples/records are stored. -
seed: An integer scalar. Random number generator seed.
Default=0.