The Altair Community is migrating to a new platform to provide a better experience for you. In preparation for the migration, the Altair Community is on read-only mode from October 28 - November 6, 2024. Technical support via cases will continue to work as is. For any urgent requests from Students/Faculty members, please submit the form linked here
Loss Function for a neural network
alois_borgognon
Member Posts: 15 Contributor II
in Help
Hi everyone !
I did a neural network, but I want to do a loss function to demonstrate it works well and to explain with efficiency its performance.
Do you know how to set it up ?
Thanks a lot for your help
0
Best Answer
-
lionelderkrikor RapidMiner Certified Analyst, Member Posts: 1,195 UnicornHi @alois_borgognon,
- if you are using the native Deep Learning operator, you have to :
- choose a loss function in the parameters of this operator :
then you retrieve the results of the loss function in the model (mod output port) results :
- if you are using the deep learing extension (DL4J), you have to :
- choose the loss function in the parameters of the Tensor operator :
- connect the his output port of the Tensor operator to see the value of the loss function according to the epoch :
To obtain some help on this last deep learning extension, you can go to Sample -> Deep Learning in the repository :
Regards,
Lionel
8