+ 1
What's a neural network code like? Can you post it so that everyone can see?
2 Réponses
+ 5
+ 3
Depends on the library you use. Basically you just define layers, layer type, number of nodes, how they are connected, learning algorithm, activation function of nodes in each layer, weight initialization function and all. Then after the network is ready you give it the training data and testing data which are lists of inputs with their outputs. Then you fit the data into the network.