|
micrograd 0.1.0
Small C implementation of micrograd
|
Layer of neurons in a neural network. More...
#include <layer.h>

Data Fields | |
| size_t | n_in |
| size_t | n_out |
| mg_neuron * | neurons |
Layer of neurons in a neural network.
| size_t mg_layer::n_in |
Number of input values consumed by each neuron.
| size_t mg_layer::n_out |
Number of output values produced by the layer.
| mg_neuron* mg_layer::neurons |
Array of n_out neurons.