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!