Loss function in CNN

6 views (last 30 days)
Andres Ramirez
Andres Ramirez on 9 Aug 2019
Commented: abomad anam on 9 Mar 2020
I am trying to define a custom classification output layer in which I am defining the cross entropy as an error function. To my error function I want to add a second function whose error depends on the input and output of two intermediate layers of the CNN, but I have no idea how to extract these two variables to include them in the error function.
Could someone please help me.
Thank you.
Greetings.
  1 Comment
abomad anam
abomad anam on 9 Mar 2020
Hi Andres,
I am trying to define a similar network in which the entropy loss function should computed from the final layer and some intermediate layer as well. Actually, I couldnot define a coustom outputlayer that accept mutiple input!
I have explain the problem in this link:
Could you help me solve this issue?

Sign in to comment.

Answers (1)

Matt J
Matt J on 9 Aug 2019
I expect you might have to feed the hidden layer outputs forward, making them inputs/outputs of your custom output layer. That way, you can then treat the hidden layers just like any other output layer prediction variables.
Doing this would result in an imperfectly sequential network architecture. The following page on layerGraph objects shows how to take control of the architecture at this level.

Products


Release

R2018b

Community Treasure Hunt

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

Start Hunting!