Neural network curve fitting: How to tell the net that some samples are more important than others?
Mostrar comentarios más antiguos
Dear community,
I am using Matlab to evaluate a large set of physical measurements. What I am trying to do is a multidimensional curve fitting with the aid of the Neural Network toolbox in 2013a.
I am not a NN expert, so I mostly used the default values proposed by Matlab. I have a NN with 5 input variables, 1 output variable and 6864 samples. Basically, the NN does the fitting quite well with R=.997. This behavior is expected since it is known from physics that there is strong correlation between the 5 inputs and the output (but highly non-linear).
However, for some regions of the input variables, the NN results are not satisfying, as the differences between measurements and NN predictions are unreasonably high.
Now, I know from the measurements, that not all samples are equal in quality (measurement uncertainty, in this case). Thus, my straightforward approach was to assign some value of 'importance' to the input samples, meaning that those samples with low measurement uncertainty become 'more important' while samples with high meas. uncertainty are penalized.
I tried to find details about this sort of 'input weighting' in the User Guide and on google, but I have not found anything useful.
If you have any kind of alternative suggestions (using more than 1 hidden layer, etc.), please let me know. I am motivated to try everything :-)
Any help on my question is very highly appreciated! Thank you and regards, Philip
Respuesta aceptada
Más respuestas (3)
Philip Ohnewein
el 7 de Sept. de 2013
Editada: Philip Ohnewein
el 22 de Nov. de 2013
1 comentario
Greg Heath
el 7 de Sept. de 2013
This syntax was documented in 2004 when I started using MATLAB at home after I retired. Why the documentation was changed, I dunno. IIRC
[ net tr y e Xf Af ] = train( net, x, t, Xi, Ai, ew );
Sometimes looking at the source code helps. Sometime not.
type trainlm
type train
Greg Heath
el 5 de Sept. de 2013
0 votos
See help mse and doc mse regarding the input: error weights.
Hope this helps.
Thank you for formally accepting my answer
Greg
Philip Ohnewein
el 6 de Sept. de 2013
Categorías
Más información sobre Deep Learning Toolbox en Centro de ayuda y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!