From e1a3ef15af50f4c790a149658843c2c4c32ea067 Mon Sep 17 00:00:00 2001 From: Arthur DANJOU Date: Wed, 4 Feb 2026 18:15:26 +0100 Subject: [PATCH] fix: update import order and reset execution count in VAT notebook --- M2/Clustering In Practice/VAT.ipynb | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/M2/Clustering In Practice/VAT.ipynb b/M2/Clustering In Practice/VAT.ipynb index 7c98313..5981217 100644 --- a/M2/Clustering In Practice/VAT.ipynb +++ b/M2/Clustering In Practice/VAT.ipynb @@ -2,15 +2,16 @@ "cells": [ { "cell_type": "code", - "execution_count": 27, + "execution_count": null, "id": "0537d051", "metadata": {}, "outputs": [], "source": [ + "from pyclustertend import hopkins, vat\n", + "\n", "import numpy as np\n", "\n", "from sklearn.datasets import load_iris\n", - "from pyclustertend import vat, hopkins\n", "\n", "rng = np.random.default_rng(42)\n", "\n",