If possible in neural networks turn off automatic data normalization?

2 vues (au cours des 30 derniers jours)
Radek
Radek le 9 Juin 2015
Modifié(e) : John Kelly le 3 Fév 2017
If possible in neural networks turn off automatic data normalization?

Réponses (1)

Greg Heath
Greg Heath le 9 Juin 2015
Or course. You can change any default that you want.
[ x,t] = simplefit_dataset;
Now, what do you see when you enter each of these commands, ONE AT A TIME, without an ending semicolon? Look CAREFULLY at EACH result.
net = fitnet
input = net.inputs{1}
processFcns = net.inputs{1}.processFcns
processFcns2 = net.inputs{1}.processFcns{2}
output = net.outputs{2}
etc
Hope this helps.
Thank you for formally accepting my answer
Greg
  3 commentaires
Radek
Radek le 10 Juin 2015
net.inputs{1}.processFcns = {'removeconstantrows'}; this was corrected! thanks
Greg Heath
Greg Heath le 10 Juin 2015
Good!
I think I was trying to eliminate the 2nd component directly. However I couldn't find a way to do it.
I don't know how I came up with the answer I posted.

Connectez-vous pour commenter.

Catégories

En savoir plus sur Deep Learning Toolbox dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by