setting input data division ratio
이전 댓글 표시
how can i change division ratio for input data ???...input data is divided by default into 60% for training data , 20 % for validation & 20 % test data....i want to change these values to 70% for training & 15 % for validation & test....i used the following commands to change them: net.divideparam.trainratio=0.7; net.divideparam.valratio=0.15; net.divideparam.testratio=0.15; but after running the program i didn't find any change occured in division of samples !!!
댓글 수: 1
Jonny
2011년 10월 7일
Hi Hoda,
Can you please,show me what you edit in divideparam in dividerand.m file?
Thanks
채택된 답변
추가 답변 (1개)
grytan sarkar
2017년 5월 12일
0 개 추천
Thanks Lucas.
mse_train = tr.perf(tr.best_epoch + 1); % There is epoch 0, but arrays in % MATLAB start in 1. mse_val = tr.vperf(tr.best_epoch + 1); mse_test = tr.tperf(tr.best_epoch + 1); Its really good for me.
I need more information. Is it possible to determine the mean, standard deviation, minimum and maximum value of each input in training, testing and validation data set. If i consider random selection.
댓글 수: 1
Greg Heath
2017년 5월 12일
Yes.
It should be straightforward.
What seems to be the problem?
Show your attempts and we will see if it looks ok.
Hope this helps.
Greg
카테고리
도움말 센터 및 File Exchange에서 Deep Learning Toolbox에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!