19 lines
No EOL
469 B
C
19 lines
No EOL
469 B
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#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
|
|
*/
|
|
} |