cbasedann/neurons.h
2021-11-27 10:46:33 +01:00

14 líneas
Sin EOL
312 B
C

#ifndef NEURONS_H
#define NEURONS_H
typedef struct neuron Neuron;
struct neuron
{
float output; //output of the neuron
float *weights; //weights associated to the neuron + neuron's bias
float delta_error; //the delta error for updating current weights
Neuron *same_layer_next_neuron;
};
#endif