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
Backpropagation Algorithm in neural net
Hello,
I am building a classification model using Neural Network operator. I want to know which backpropagation algorithm is used i this operater for weight update and reducing the error ( while training) . Like in matlab we have trainbfg , traincgf...
What is used here? and is this algorithm takes global minima or local minima ( for minimum error)
I am building a classification model using Neural Network operator. I want to know which backpropagation algorithm is used i this operater for weight update and reducing the error ( while training) . Like in matlab we have trainbfg , traincgf...
What is used here? and is this algorithm takes global minima or local minima ( for minimum error)
0
Best Answer
-
varunm1 Member Posts: 1,207 UnicornAre you asking about the Deep Learning (H20 based) operator or the deep learning extension? If it is about the deep learning operator (H20) it is a feed forward network with SGD based back propagation. The difference between a neural network operator and deep learning operator is it is highly customizable with different activations and regularizations. For RNN and CNN, we have deep learning extension which needs to be installed from marketplace.Regards,
Varun
https://www.varunmandalapu.com/Be Safe. Follow precautions and Maintain Social Distancing
6
Answers
MarlaBot
After some time looking at the RM neural net code, I understood that it is using the JOONE engine (Java-based) with momentum backpropagation. Coming to the question 2, the optimization is local optimization (converge to optimal local minima) based on momentum.
@IngoRM anything to add here?
Hope this helps
Varun
https://www.varunmandalapu.com/
Be Safe. Follow precautions and Maintain Social Distancing