forked from lgallet/XOR-NeuralNetwork-C
19 lines
359 B
C
19 lines
359 B
C
//
|
|
// Created by Louis Gallet on 27/09/2024.
|
|
//
|
|
|
|
#ifndef USE_H
|
|
#define USE_H
|
|
|
|
#define NUM_INPUTS 2
|
|
#define NUM_HIDDEN 25
|
|
#define NUM_OUTPUTS 1
|
|
#define NUM_TRAINING_SETS 4
|
|
|
|
|
|
void getvalues(char filename[], double **HiddenWeights, double *HiddenBiases, double **FinalOutputWeights, double *FinalOutputBiases);
|
|
int main(int argc, char *argv[]);
|
|
|
|
|
|
#endif //USE_H
|