feat: Create Neural network for XOR

This commit is contained in:
2024-09-27 18:00:01 +02:00
commit 82b65ae2a1
7 changed files with 698 additions and 0 deletions

18
use.h Normal file
View File

@ -0,0 +1,18 @@
//
// Created by Louis Gallet on 27/09/2024.
//
#ifndef USE_H
#define USE_H
#define NUM_INPUTS 2
#define NUM_HIDDEN 2
#define NUM_OUTPUTS 1
#define NUM_TRAINING_SETS 4
void getvalues(char filename[], double **HiddenWeights, double *HiddenBiases, double **FinalOutputWeights, double *FinalOutputBiases);
int main();
#endif //USE_H