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
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에 대해 자세히 알아보기

질문:

2013년 4월 16일

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by