Can we create a narxnet type network with more than one external inputs
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Iroshani Jayawardene
el 19 de Feb. de 2019
Respondida: Pruthvi Muppavarapu
el 22 de Feb. de 2019
I am trying to train a time series using narxnet, where I have to use multiple time series as external inputs. When I try to train the network I get the followng error.
Number of inputs does not match net.numInputs.
Here the numInputs property is set to 2 by default in matlab. Is it possible to change this net.numInputs property to a value greater than two
0 comentarios
Respuestas (1)
Pruthvi Muppavarapu
el 22 de Feb. de 2019
Yes, it is possible to change the numInputs property of the narxnet. For example,
>>net.numInputs= 4;
This overwrites the numInputs property with the value specified (In this example, 4).
0 comentarios
Ver también
Categorías
Más información sobre Define Shallow Neural Network Architectures en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!