#include #include #include #include "randomness.h" #include "neurons.h" #include "network.h" Neuron *generate_layer(int n_neurons, int n_neurons_prev_layer) { } Network *init_network(int n_neurons_per_layer[]) { /* initialize the network based on array n_neurons_per_layer : - size of n_neurons_per_layer is the number of layers - each ith number in array n_neurons_per_layer is the number of neurons in ith layer */ }