How to customize performance functions(Neural Network)

I would like to train a network by writing a new custom performance function. Here's how to customize the performance function. As explained above, the best way to create a custom performance function by using "mse.m:" and the +MSE function package as a template, that is, consider using the template provided by "+mse" to create a new package "+newfcn".
This is the contents of the `+mse` folder. What makes up the cost function seems to be structured in these atom functions. However, their exact roles are unclear.
ls +mse
apply.m backprop.m forwardprop.m perfwb.m
name.m type.m normalize.m parameterInfo.m
dperf_dwb.m perfw_to_ew.m
Since the code is simple and uncommented, it's hard for me to understand how they implement the functionality. Also, for reference, `apply`, `backprop`, and `forwardprop` functions are concatenated below:
function perfs = apply(t,y,e,param)
%MSE.APPLY
perfs = e .* e;
end
function dperf = forwardprop(dy,t,y,e,param)
%MSE.FORWARDPROP
dperf = bsxfun(@times,dy,-2*e);
end
function dy = backprop(t,y,e,param)
%MSE.BACKPROP
dy = -2*e;
end
I'm having a hard time trying to understand how these work together to compose a Mean Squared Error function. It seems like the classical implementation of MSE was decomposed into steps to achieve more flexibility, but combined with no documentation it's become very hard to understand.
What are the roles of the cost function's subfunctions, and how they should be implemented? Where do I need to modify the code if I want to implement a custom performance function?
Thanks in advance.

댓글 수: 2

I'm trying to do the same thing and there is completely no information on how to do this.
Hi, did you solve your problem? I'm having the exact issue

댓글을 달려면 로그인하십시오.

답변 (1개)

David Willingham
David Willingham 2022년 9월 6일

0 개 추천

Hi,
The code you refer to above is referencing the older classic neural networks framework, which is primarily used for shallow neural networks.
We have a newer, updated framework for deep learning that allows you to fully customize how yo can train a model. More information on this can be found here.
Can you provide more information on the network you are looking to customize?

카테고리

도움말 센터File Exchange에서 Deep Learning Toolbox에 대해 자세히 알아보기

질문:

2022년 7월 19일

댓글:

2023년 1월 26일

Community Treasure Hunt

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

Start Hunting!

Translated by