diff --git a/Embedding.ipynb b/Embedding.ipynb
index 54ff18f62b8e26a12e4db80c507812ea048d46df..53932e38976944166b68f3c580c1909f5790de2c 100644
--- a/Embedding.ipynb
+++ b/Embedding.ipynb
@@ -380,7 +380,22 @@
    "cell_type": "code",
    "execution_count": null,
    "metadata": {},
-   "outputs": [],
+   "outputs": [
+    {
+     "data": {
+      "application/vnd.jupyter.widget-view+json": {
+       "model_id": "923592dda7b24510bbea3060d7c8253d",
+       "version_major": 2,
+       "version_minor": 0
+      },
+      "text/plain": [
+       "HBox(children=(FloatProgress(value=0.0, description='Intra-only', max=250274.0, style=ProgressStyle(descriptio…"
+      ]
+     },
+     "metadata": {},
+     "output_type": "display_data"
+    }
+   ],
    "source": [
     "### Intras ###\n",
     "#sampler_intras = Sampler.MVG(cover_path = cover_path, seed = 1234, strategy = \"Intra-only\")\n",
diff --git a/NS/sampling/BIL/__init__.py b/NS/sampling/BIL/__init__.py
index 5f92571b20d1340c83d95f41c3b44cf885c18ccf..0897a6698e4afd81034dd911749570c40b1379d2 100644
--- a/NS/sampling/BIL/__init__.py
+++ b/NS/sampling/BIL/__init__.py
@@ -213,7 +213,7 @@ class Sampler():
         M_1 = Covariance.getPhotositesToDctMatrix(1, 'Y')
 
         # Lattices loaders
-        pbar1 = tqdm(total=((h//8-2))*((w//8-2)), desc = "Intra-only")
+        pbar1 = tqdm(total=(h//8-2)*(w//8-2), desc = "Intra-only")
 
         #Lattice 1
         for i, j in itertools.product(range(h//8-2), range(w//8-2)):