Neural Network with multiple Outputs
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Mohamed Amine Chaaleb
le 28 Août 2017
Commenté : Mohamed Amine Chaaleb
le 28 Août 2017
Hi everybody :) !!
I'm creating a neural network with multiple inputs and multiple outputs. I had no problem with the input since I reshaped it into one vector and then I used the con2seq command to change it to a cell array with the number of column as samples. 1xN samples. Now the Problem is that my outputs are three matrices: Output1: 263x3 (it's a temperatur as a function of time) Output2: 263x3 (another temperature-function as a function of time) Output3: 263x3 (264 time steps)
the number of column is 3 because it's actually the number of sensors that I'm using in my experiment and the number of rows is 263 ... it's the time steps. How do I have to define my outputs since it is multidimensional?
Thank you !
0 commentaires
Réponse acceptée
Greg Heath
le 28 Août 2017
For N I-dimensional "I"nputs yielding N O-dimensional "O"utputs
[ I N ] = size(input)
[ O N ] = size(target)
You have some rearranging to do.
Hope this helps.
Thank you for formally accepting my answer
Greg
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Deep Learning Toolbox dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!