Permut Data for Neural Networks

2 vues (au cours des 30 derniers jours)
Hamza Ali
Hamza Ali le 25 Avr 2017
Commenté : Hamza Ali le 25 Avr 2017
Hello eveybody !
I use Neural Networks for prediction and i would like to apply random permutation to DataInputs(2*1199) and DataTargets(2*1199).
Could you help me to do that, please ?

Réponse acceptée

KSSV
KSSV le 25 Avr 2017
I = rand(2,119) ; % data
idx = randperm(size(I,2)) ; % random order
I = I(:,idx) ; % arrange
  1 commentaire
Hamza Ali
Hamza Ali le 25 Avr 2017
Thank you !

Connectez-vous pour commenter.

Plus de réponses (0)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by