how can divide the sample into two part (training and test) in Narnet
이전 댓글 표시
By using Matlab code the divide function which I have employed is divideblock therefore I necessarily divided the sample into three part : training, validation and test.
How I can decomposed the sample inti only two parts (training and test), what's the code which I must employed instead 'divideblock'.
Thanks
채택된 답변
추가 답변 (1개)
the cyclist
2015년 5월 16일
Notice the syntax of divideblock:
divideblock(Q,trainRatio,valRatio,testRatio)
If you only want training and test sets, then use something like
divideblock(Q,0.8,0,0.2)
댓글 수: 3
coqui
2015년 5월 16일
Greg Heath
2015년 5월 24일
Why don't you want a validation set?
What MATLAB version?
What training function?
Really need to see more code.
coqui
2015년 7월 5일
카테고리
도움말 센터 및 File Exchange에서 Deep Learning Toolbox에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!