From 08cbb807f95b6cfbc05db1e7c4e0db1823c1c121 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20GUEZO?= Date: Sat, 12 Jul 2025 12:09:46 +0200 Subject: [PATCH] chore: add Prerequisites and Installation section --- README.md | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index c9aaf10..4f7cee8 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -

Game of Life

+

Neural Network

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)