feat: Finish IA part

This commit is contained in:
2024-10-31 16:45:15 +01:00
parent aa45331010
commit 4b2ab03dab
10 changed files with 76 additions and 3 deletions

View File

@ -0,0 +1 @@
The structure of this neural network consists of an input layer, a hidden layer, and an output layer. The network is configured to solve the XOR problem, with binary input values and a binary output. The hidden layer, represented by the array \texttt{hiddenLayer}, is connected to the inputs through weights \texttt{hiddenWeights}, while the output layer, \texttt{outputLayer}, is connected to the hidden layer via the weights \texttt{outputWeights}. The biases for each layer are initialized in \texttt{hiddenLayerBias} and \texttt{outputLayerBias}.