How to divide my dataset into validation and test set in deep networks with Auto-Encoders?
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Machine Learning Enthusiast
il 18 Feb 2017
Commentato: Machine Learning Enthusiast
il 22 Feb 2017
i am using this example
http://www.mathworks.com/help/nnet/ug/construct-deep-network-using-autoencoders.html#nnet-ex20671592
i want to divide data like this but its not working
% Setup Division of Data for Training, Validation, Testing
net.divideParam.trainRatio = 80/100;
net.divideParam.valRatio = 15/100;
net.divideParam.testRatio = 15/100;
2 Commenti
mizuki
il 19 Feb 2017
What is the error you get? or what is "not working" exactly?
It seems that 80+15+15=110, so the ratio of training, validation and test data becomes 0.8/1.1=0.727, 0.15/1.1=0.136 and 0.136.
Risposte (1)
Vedere anche
Categorie
Scopri di più su Deep Learning Toolbox in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!