Fully connected layers in LSTM regression
2 ビュー (過去 30 日間)
古いコメントを表示
Ahmed Elbeltagi
2020 年 9 月 27 日
コメント済み: Ahmed Elbeltagi
2020 年 9 月 30 日
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 件のコメント
採用された回答
Srivardhan Gadila
2020 年 9 月 30 日
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];
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Deep Learning Toolbox についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!