フィルターのクリア

Deep Learning Layers to increase training accuracy

3 ビュー (過去 30 日間)
Jahetbe
Jahetbe 2022 年 2 月 22 日
コメント済み: Jahetbe 2022 年 2 月 23 日
Hi everyones.
I want to use DL for modeling a problem with 6 inputs and one output.
I've used the following layers but I cannot increase the model accuracy not only for unseen samples but also for training samples.
I've check different structures and try to generated a complex model as much as possible to get at least good results in training stages
numHiddenNeuron = 100;
layers = [
featureInputLayer(numFeatures,'Normalization','rescale-symmetric')
fullyConnectedLayer(numHiddenNeuron)
reluLayer('Name','relu')
batchNormalizationLayer
fullyConnectedLayer(numOut)
regressionLayer('Name','regression')];
I would be appreciated it if you could help me.
Regards,

回答 (1 件)

yanqi liu
yanqi liu 2022 年 2 月 23 日
yes,sir,may be add some dropoutLayer in net Layers,such as
numHiddenNeuron = 100;
layers = [
featureInputLayer(numFeatures,'Normalization','rescale-symmetric')
fullyConnectedLayer(numHiddenNeuron)
reluLayer('Name','relu')
batchNormalizationLayer
dropoutLayer
fullyConnectedLayer(numOut)
regressionLayer('Name','regression')];
% or
layers = [ ...
sequenceInputLayer(numFeatures)
lstmLayer(100,'OutputMode','sequence')
dropoutLayer(0.3)
lstmLayer(50,'OutputMode','sequence')
dropoutLayer(0.2)
fullyConnectedLayer(numOut)
regressionLayer];
if possible,may be upload your data to analysis
  2 件のコメント
Jahetbe
Jahetbe 2022 年 2 月 23 日
Thank you for your response.
I've check the first one and the results didn't change.
For the 2nd one, my data is not time series and I cannot use the "sequenceInputLayer" as well as "lstmLayer".
Dou you have any other recommendation? Infortunately the resutls are vey bad
Regards
Jahetbe
Jahetbe 2022 年 2 月 23 日
I've check it agsin, unfortunately after some iterations (lest than 20), the RMSE does not decrease

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeDeep Learning Toolbox についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by