Fully connected layers in LSTM regression
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Ahmed Elbeltagi
el 27 de Sept. de 2020
Comentada: Ahmed Elbeltagi
el 30 de Sept. de 2020
Hello everyone,
Please, i am impementing the LSTM regression using Matlab R 2019b but i have error related to fully connected layers (see the attached screenshot).
Please help me to solve this error.
Thanks
0 comentarios
Respuesta aceptada
Srivardhan Gadila
el 30 de Sept. de 2020
You have to remove the space present between the function name and the parentheses i.e., use the below code instead:
layers = [sequenceInputLayer(inputSize)
lstmLayer(numHiddenUnits)
fullyConnectedLayer(numResponses)
regressionLayer];
Más respuestas (0)
Ver también
Categorías
Más información sobre Deep Learning Toolbox 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!