Data Science and Machine Learning — Neural Network (Part 02): Feed forward NN Architectures Design
by
, 08-27-2022 at 02:37 AM (295 Views)
-------------------In the prior article, we discussed the basics of a neural network and build a very basic and static MLP, but we know in real-life applications we are not going to need a simple 2 inputs and 2 hidden layers nodes in the network to the output, something we built last time.
My point is that we need something dynamic. A dynamic code that we can change the parameters and optimize without breaking the program. If you use python-keras library to build a neural network you will have to do less work of configuring and compiling even complex architectures, that is something that I want us to be able to achieve in MQL5.
Just like I did on the Linear regression part 3 which is one among the must-read in this article series, I introduced the matrix/vector form of models to be able to have flexible models with an unlimited number of inputs.
- Data Science and Machine Learning — Neural Network (Part 01): Feed Forward Neural Network demystified
- Data Science and Machine Learning — Neural Network (Part 02): Feed forward NN Architectures Design
more...