Permut Data for Neural Networks
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
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 ?
0 commentaires
Réponse acceptée
KSSV
le 25 Avr 2017
I = rand(2,119) ; % data
idx = randperm(size(I,2)) ; % random order
I = I(:,idx) ; % arrange
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Deep Learning Toolbox dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!