Can somebody help me explain multilayer neural networks? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Can somebody help me explain multilayer neural networks?

I programming a neural network with 1 hiddel layer, but when I need more hidden layer, my program is not be able to use it. I read some paper about multi hidden layer, and these training methods(example backpropagation), but I dont understand a few thing, I really want to understand, or someone show me an understable code. When I try to programming multilayer training, and prediction, something not working, so I would be grateful if someone link here a code example for multi hidden layer neural network (I written with java)

23rd Feb 2022, 4:56 PM
Domonkos Gyömörey
Domonkos Gyömörey - avatar
17 Answers
+ 2
That's fine. It's for the sake of easy understanding to break stuff into modules.
23rd Feb 2022, 9:15 PM
LiquidX
LiquidX - avatar
+ 1
Did you model classes properly ? We have a Simple Cell class, with Input, Output class, Layer class - map / array of Simple Cells, Network class - List of Layer objects.
23rd Feb 2022, 9:10 PM
LiquidX
LiquidX - avatar
+ 1
This is more of an LLD problem than of machine learning.
23rd Feb 2022, 9:11 PM
LiquidX
LiquidX - avatar
+ 1
Google my man, just google - neural network implementation from scratch in java.
23rd Feb 2022, 9:20 PM
LiquidX
LiquidX - avatar
+ 1
Use multiple threads to run different nodes on different cores. Nvidia does it very nice on GPUs.
23rd Feb 2022, 9:25 PM
LiquidX
LiquidX - avatar
+ 1
I learnt in university and I did Andrew Ng free course around 3 years ago.
23rd Feb 2022, 9:31 PM
LiquidX
LiquidX - avatar
+ 1
there is website called machinelearning.com i guess
23rd Feb 2022, 9:32 PM
LiquidX
LiquidX - avatar
+ 1
Cool, have fun.
24th Feb 2022, 6:13 AM
LiquidX
LiquidX - avatar
+ 1
Did you learn about integration & differentiation in math ? Think of hidden layer's input as new neural network and try to recursively build logic.
24th Feb 2022, 11:17 PM
LiquidX
LiquidX - avatar
0
I am not working multiple classes, I have 1 class, and the layers weights I store in matrices
23rd Feb 2022, 9:14 PM
Domonkos Gyömörey
Domonkos Gyömörey - avatar
0
Can you souggest me, sites, or app where I can see multiple layer's property, and arhitecture?
23rd Feb 2022, 9:19 PM
Domonkos Gyömörey
Domonkos Gyömörey - avatar
0
Thanks, and what can I do for optimalize a big neural network example with 10000 hidden nodes?
23rd Feb 2022, 9:23 PM
Domonkos Gyömörey
Domonkos Gyömörey - avatar
0
Thanks, the tips, where are you learn about neural networks?
23rd Feb 2022, 9:28 PM
Domonkos Gyömörey
Domonkos Gyömörey - avatar
0
Thanks the helping😊
23rd Feb 2022, 9:43 PM
Domonkos Gyömörey
Domonkos Gyömörey - avatar
0
I'd like to find a site, or any helping paper, about the backpropagation algorithm, because I think, I don't understand few thing in the method In single hidden layer network I understand then traiming, and the error calculation, but more complicatin in multilayer network
24th Feb 2022, 7:15 AM
Domonkos Gyömörey
Domonkos Gyömörey - avatar
0
I did not learn about integration, and....., but I know about these math things(so I cant application these math things for a problem), do you suggest me, to learn more math?
25th Feb 2022, 5:06 AM
Domonkos Gyömörey
Domonkos Gyömörey - avatar
0
yes, just the basics are enough
16th Mar 2022, 9:57 AM
LiquidX
LiquidX - avatar