From aec178208e949b55eaef9a2fdfcf82098ad71040 Mon Sep 17 00:00:00 2001 From: Arthur DANJOU Date: Wed, 5 Nov 2025 19:53:09 +0100 Subject: [PATCH] =?UTF-8?q?Met=20=C3=A0=20jour=20le=20compteur=20d'ex?= =?UTF-8?q?=C3=A9cution=20et=20supprime=20l'importation=20de=20TensorFlow?= =?UTF-8?q?=20dans=20le=20notebook=20TP2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- M2/Deep Learning/TP2/TP2 - Starter.ipynb | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/M2/Deep Learning/TP2/TP2 - Starter.ipynb b/M2/Deep Learning/TP2/TP2 - Starter.ipynb index ee96115..521904a 100644 --- a/M2/Deep Learning/TP2/TP2 - Starter.ipynb +++ b/M2/Deep Learning/TP2/TP2 - Starter.ipynb @@ -15,7 +15,7 @@ }, { "cell_type": "code", - "execution_count": 27, + "execution_count": 192, "metadata": {}, "outputs": [], "source": [ @@ -28,7 +28,6 @@ "\n", "sns.set(style='whitegrid')\n", "\n", - "import tensorflow as tf\n", "from tensorflow import keras\n", "\n", "(X_train_full, y_train_full), (X_test, y_test) = (keras.datasets.fashion_mnist.load_data())"