Please enable JavaScript.
Coggle requires JavaScript to display documents.
NN concepts - Coggle Diagram
NN concepts
-
Layers
-
-
Working Principle
Each node in the input layer is assigned a weight. This is then multiplied with the node and the weighted sum of inputs is passed on to the next layer.
Keras Example
Here Dense(5, -> means 5 neurons in that layer. Second Dense(2, -> means 2 neurons which is an output layer.
-
-
-