Neural Networks manipulation in k fold method
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
laplace laplace
am 5 Mai 2013
Kommentiert: Greg Heath
am 19 Dez. 2018
so after using the k-fold method (for validating and testing each subset K times) is there a way to manipulate the k "subnetworks" created? i there a way to make these k networks visible and accesible? Is my question meaningfull? i mean what happenes in k-fold is creating k networks or not?
0 Kommentare
Akzeptierte Antwort
Greg Heath
am 6 Mai 2013
The simplest solution is
y = mean( net1(x)+net2(x)+...netk(x));
Any effort to combine weights into one net has to take into consideration the different default normalizations. Therefore, all of the data would have to be standardized or normalized a priori using the same mean/stdv or min/max and the default normalization disabled.
Hope this helps
Thank you for formally accepting my answer
Greg
0 Kommentare
Weitere Antworten (1)
Siehe auch
Kategorien
Mehr zu Sequence and Numeric Feature Data Workflows finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!