From df74040e97cc100a36794bbcf834f32d576f8503 Mon Sep 17 00:00:00 2001 From: Neta Zmora <neta.zmora@intel.com> Date: Wed, 29 Aug 2018 12:11:14 +0300 Subject: [PATCH] Jupyter notebooks: fix Python 2.x/3.x syntax compatibility --- jupyter/L1-regularization.ipynb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/jupyter/L1-regularization.ipynb b/jupyter/L1-regularization.ipynb index a58c9c0..564acbb 100644 --- a/jupyter/L1-regularization.ipynb +++ b/jupyter/L1-regularization.ipynb @@ -225,9 +225,9 @@ "# Draw the contour maps of the data-loss and regularization loss\n", "CS = plt.contour(xmesh, ymesh, loss_mesh, 10, cmap=plt.cm.bone)\n", "# Draw the L1-balls\n", - "CS2 = plt.contour(xmesh, ymesh, l1_mesh, 10, linestyles='dashed', levels=[range(5)]);\n", + "CS2 = plt.contour(xmesh, ymesh, l1_mesh, 10, linestyles='dashed', levels=list(range(5)));\n", "# Draw the L2-balls\n", - "CS3 = plt.contour(xmesh, ymesh, l2_mesh, 10, linestyles='dashed', levels=[range(5)]);\n", + "CS3 = plt.contour(xmesh, ymesh, l2_mesh, 10, linestyles='dashed', levels=list(range(5)));\n", "\n", "# Add green contour lines near the loss minimum\n", "CS4 = plt.contour(CS, levels=[0.25, 0.5], colors='g')\n", -- GitLab