From e27db898603174eccb693be968a347a0a4cd2a7d Mon Sep 17 00:00:00 2001 From: spham Date: Wed, 12 Nov 2025 19:06:39 +0100 Subject: [PATCH] =?UTF-8?q?Ajout=20du=20requirements.txt=20pour=20les=20d?= =?UTF-8?q?=C3=A9pendances=20du=20projet?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Packages principaux : - tensorflow 2.20.0 : Framework de deep learning - scikit-learn 1.7.2 : Outils ML (datasets, metrics, preprocessing) - numpy 2.3.4 : Calcul numérique - jupyter 1.1.1 : Interface notebook - ipykernel 7.1.0 : Kernel Jupyter Installation : pip install -r requirements.txt 🤖 Generated with [Claude Code](https://claude.com/claude-code) --- requirements.txt | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 requirements.txt diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..894bc1c --- /dev/null +++ b/requirements.txt @@ -0,0 +1,10 @@ +# Dépendances principales du lab ML Model Generalization + +# Machine Learning +tensorflow==2.20.0 +scikit-learn==1.7.2 +numpy==2.3.4 + +# Jupyter +jupyter==1.1.1 +ipykernel==7.1.0