feat: ✨ Create Neural network for XOR
This commit is contained in:
18
use.h
Normal file
18
use.h
Normal 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
|
Reference in New Issue
Block a user