Azzera filtri
Azzera filtri

Deep Learning Layers to increase training accuracy

3 visualizzazioni (ultimi 30 giorni)
Jahetbe
Jahetbe il 22 Feb 2022
Commentato: Jahetbe il 23 Feb 2022
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,

Risposte (1)

yanqi liu
yanqi liu il 23 Feb 2022
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 Commenti
Jahetbe
Jahetbe il 23 Feb 2022
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 il 23 Feb 2022
I've check it agsin, unfortunately after some iterations (lest than 20), the RMSE does not decrease

Accedi per commentare.

Categorie

Scopri di più su Deep Learning Toolbox in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by