Borrar filtros
Borrar filtros

MISO System. LSTM

7 visualizaciones (últimos 30 días)
Jesus Mª Juarez Ferreras
Jesus Mª Juarez Ferreras el 3 de Abr. de 2024
Editada: Jesus Mª Juarez Ferreras el 8 de Mayo de 2024
Hello. I have a MIMO (multiple input-single output) system. Each of the two inputs has 100 random values. The only output has 100 values.
I put the entries as an array of cells:
sim_in = {v , p}';
and I pick up the output:
sim_out = {h1.Data}';
When training the network I get the error "Invalid training data. Predictors and responses must have the same number of observations." What would be the solution? Thank you.

Respuesta aceptada

Aman
Aman el 16 de Abr. de 2024
Hi Jesus,
This error occurs due to a dimension mismatch between the targets and the network output.
Since you are using a MISO neural net, it is better to concatenate the inputs along the appropriate dimension and reshape your output data, as we give a single input and single output to the "trainNetwork" function.
You can refer to the thread below, which discusses the same issue.
Hoping it will help you move ahead with your workflow.

Más respuestas (1)

Jesus Mª Juarez Ferreras
Jesus Mª Juarez Ferreras el 8 de Mayo de 2024
Editada: Jesus Mª Juarez Ferreras el 8 de Mayo de 2024
Hello again. Once the previous problem is solved, now I put:
sim_out = {h1.Data h1.Data}';
I want to train the MISO system that I leave in the file. I want to get the RMSE close to zero but it doesn't train well.
Does LSTM not train MISO systems?
Thanks you.

Categorías

Más información sobre Link-Level Simulation en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by