"New Neural" is an Open Source neural network engine project for the MetaTrader 5 platform. - page 5

You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
There are no "safe system" DLLs.
I propose to make a universal network with recursion instead of loops. The whole point of constructing a network is to create a topology map.
Topology map is a two-dimensional table where it is spelled out which point is connected to which one. Using such a scheme you can write the classical topologies or create your own using a graphical topology editor.
The picture explaining the code p.12
Linking into lists within a neuron, neurons and linking inputs and outputs allows to avoid problems of creating learning algorithms (as well as problems of workflow), the network itself will know where to assign what.
By the way, I strongly oppose your internal naming and coding standard.
there is no choice here. Everyone has their own standards and established principles (mine are different from the meta-quotes, too).
But the metaquotes standard is not the worst available. So that no one would be offended by your loss, we will have to use a single standard. In this situation it will be from the meta-quotes.
I propose to make a universal network with recursion instead of loops. The whole point of constructing a network is to create a topology map.
Topology map is a two-dimensional table where it is spelled out which point is connected to which one. Using such a scheme will be possible to prescribe the classical topologies or to create your own with a graphical topology editor.
Will a two-dimensional array be enough for a variety of topologies and visual understanding?
Would a two-dimensional array be enough for a variety of topologies and visual understanding?
Two-dimensional array will be enough for a variety of topologies and visual understanding?
For encryption of topology yes, for visual understanding only for specialists, still better a graphical kernel which will be from the visual perception to properly make a map.
Essentially, the map is a one-dimensional array of structures, which consist of two cells "where from" and "where to", plus the map header should contain information about how many neurons, what type each neuron has, how many weights which neuron has, what is the rank of the delay operator.
So for full visual understanding two-dimensional is not enough, better to have a two-dimensional array of structures, so that you can write down the type, number of weights, delay operator rank and connection of each input, and links from delay cells.
ZY actually "and links from delay cells" is unnecessary, they are connected to inputs so that links of inputs store information about links with delays as well.