forked from lgallet/XOR-NeuralNetwork-C
12 lines
335 B
Markdown
12 lines
335 B
Markdown
# XOR Neural Network
|
|
## How to use
|
|
1. Build and train the model
|
|
```bash
|
|
make all
|
|
```
|
|
> By default the model is train on 1000000 epochs, you can change this value in the [main.c](https://gitea.louisgallet.fr/lgallet/XOR-NeuralNetwork-C/src/branch/master/main.c#L106) file, line 106.
|
|
2. Run the model
|
|
```bash
|
|
./use [value1] [value2]
|
|
```
|