diff --git a/README.md b/README.md index c9aaf10..4f7cee8 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -
Learn how to build and train a neural network in Python from scratch.
@@ -21,7 +21,19 @@ The goal of this project is to:
- Implement all components of a neural network (no external libraries).
- Train the network to map 8-bit binary inputs to decimal values (from 0 to 255).
-## Prerequis
+## Prerequisites
+Make sure that a python3.x is installed on your machine:
+ ```bash
+ python3 --version
+ ```
+
+## Installation
+Clone and run the project locally:
+ ```bash
+ git clone https://github.com/guezoloic/NeuralNetwork.git
+ cd NeuralNetwork
+ python3 main.py
+ ```
## Links
- [Sigmoid derivation function](res/sigmoid.png)