How to randomly select matrices from within a cell array for neural network training?
3 ビュー (過去 30 日間)
古いコメントを表示
Hi!
My problem is, I want to create a training, test and validation set for neural network training from a cell array that contains matrices with different number of rows (denoting samples), but of course the same number of columns(denoting variables).
One issue is, the train function does not accept an input cell array with matrices having different number of rows or columns.
Another issue is, If I use the function 'patternnet' for creating a network and set net.divideFcn = 'dividerand', it chooses samples randomly, I suppose. But I want the matrices in the cell, instead of rows from all matrices within the cell, to be chosen randomly. How do I go about it?
I'm not sure, but is cvpartition an option? I'm not sure if the partition model can be used with NNs
Thanks.
0 件のコメント
採用された回答
Greg Heath
2014 年 12 月 17 日
Convert cells to an I x N input matrix with N I-dimensional input vectors and an O x N output matrix with N corresponding O-dimensional target vectors.
Use divideind to divide into trn/val/tst subsets.
Hope this helps.
Thank you for formally accepting my answer
Greg
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Deep Learning Toolbox についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!