How to take matrices as input to neural network?
3 ビュー (過去 30 日間)
古いコメントを表示
I have 5000 matrices of size 20x20. How to take these as input to my neural network? Is making a column vector of size 400x1 the only way? Is there some way I can have 20 input features of size 1x20?
7 件のコメント
KSSV
2021 年 6 月 15 日
Yes...you can try for each feature of matrix 1x20 on output ....so each row corresponds to one number of target.
回答 (1 件)
Gagan Agarwal
2024 年 5 月 27 日
Hi Pritam
Yes it is possible and you can try for each feature of matrix to 1x20 on output and that too through various netwroks depending on the nature of your data and what you're trying to achieve.
For instance if:
- spatial relationships are crucial, consider CNNs.
- sequential relationships matter, look at RNNs or their variants.
- you're interested in treating each row/column as a separate entity without focusing on spatial or sequential relationships, the multiple input models or separate input channels approach could work.
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!