Neural Network: Single Input, Multiple Output
显示 更早的评论
Guys,
I need your help ASAP! I have a vector 1x1000 entering my NN, and my target output shoudld be a 7x5x1000 3D matrix, meaning a a 2D 7x5 matrix describes each point of my input vector, since there are 1000 periods, its a 3D matrix 7x5x1000.
How can I do this? Usually NNs have a mulitple input, single output, and I want to do the opposite.
Would appreciate your help!
JC
回答(1 个)
Greg Heath
2013-4-17
0 个投票
Unfold your target images to 35x1 column vectors using (:) or reshape. Then
[I N ] = size(input) % [ 1 1000]
[ O N ] =size(target) %[ 35 1000]
Hope this helps.
Thank you for formally accepting my answer
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!