Skip to content

permutation of train data

implement permutation inside single station set to make sure, that each mini batch represents a subset of full distribution.

e.g.

p = np.random.permutation(len(X))
X = X[p]
Y = Y[p]

...to be implemented in DataGenerator

Edited by Ghost User