How to use a trained neural network as objective function in fminsearch?

I have trained a neural network, with input x that is a matrix 12x22000 and a target t 1x22000, and i have got an output y 1x22000, now i want to optimaize one element of my output with the tool fminsearch but i don't know how to write the objective function 'fun'.
What should i put as 'fun'?
x = input;
t = output;
trainFcn = ['trainlm'];
hiddenLayerSize = 50;
net = feedforwardnet(hiddenLayerSize,trainFcn);
net.divideFcn = ['divideblock'];
net.performFcn = 'mse';
[net,tr] = train(net,x,t);
y = net(x);
%now i want use fminsearch(fun,x0,options)

2 comentarios

Matt J
Matt J el 19 de Sept. de 2022
Editada: Matt J el 19 de Sept. de 2022
Optimize with respect to what unknowns? If you are trying to refine the weights, the output surely depends on many, many network weight parameters, which is not suitable for fminsearch.
optimize with respect to the 12 input variables for each output

Iniciar sesión para comentar.

 Respuesta aceptada

fminsearch.is unlikely to be able to handle 12 unknowns well. You should probably use fminunc if you have the Optimization Toolbox. Either way, the 'fun' input would be,
fun=@(x) net(x);

1 comentario

Saurabh Sharma
Saurabh Sharma el 16 de Dic. de 2023
Editada: Saurabh Sharma el 16 de Dic. de 2023
How can we get a trained Gaussian process regression machine learning model in a mathematical equation form? How to write 'fun' if we want to minimise three or four models at same time?
Thankyou

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Deep Learning Toolbox en Centro de ayuda y File Exchange.

Preguntada:

el 19 de Sept. de 2022

Editada:

el 16 de Dic. de 2023

Community Treasure Hunt

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

Start Hunting!

Translated by