Permut Data for Neural Networks
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Hamza Ali
el 25 de Abr. de 2017
Comentada: Hamza Ali
el 25 de Abr. de 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 ?
0 comentarios
Respuesta aceptada
KSSV
el 25 de Abr. de 2017
I = rand(2,119) ; % data
idx = randperm(size(I,2)) ; % random order
I = I(:,idx) ; % arrange
Más respuestas (0)
Ver también
Categorías
Más información sobre Deep Learning Toolbox en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!