From 77f8121d44c2140256ba84413d5f9f18ca6dda6a Mon Sep 17 00:00:00 2001 From: tiruka <33803972+tiruka@users.noreply.github.com> Date: Thu, 22 Aug 2024 22:34:36 +0900 Subject: [PATCH] modified burn module paths in example notebooks (#2188) --- examples/notebook/basic-tensor-op.ipynb | 4 ++-- examples/notebook/plots.ipynb | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/examples/notebook/basic-tensor-op.ipynb b/examples/notebook/basic-tensor-op.ipynb index 99e08e25a..49dcd5b02 100644 --- a/examples/notebook/basic-tensor-op.ipynb +++ b/examples/notebook/basic-tensor-op.ipynb @@ -22,8 +22,8 @@ "// The syntax is similar to the one used in the Cargo.toml file. Just prefix with :dep\n", "// See: https://github.com/evcxr/evcxr/blob/main/COMMON.md\n", "\n", - ":dep burn = {path = \"../../burn\"}\n", - ":dep burn-ndarray = {path = \"../../burn-ndarray\"}" + ":dep burn = {path = \"../../crates/burn\"}\n", + ":dep burn-ndarray = {path = \"../../crates/burn-ndarray\"}" ] }, { diff --git a/examples/notebook/plots.ipynb b/examples/notebook/plots.ipynb index bafdd3a3b..5aa4789c9 100644 --- a/examples/notebook/plots.ipynb +++ b/examples/notebook/plots.ipynb @@ -22,8 +22,8 @@ "// The syntax is similar to the one used in the Cargo.toml file. Just prefix with :dep\n", "// See: https://github.com/evcxr/evcxr/blob/main/COMMON.md\n", "\n", - ":dep burn = {path = \"../../burn\"}\n", - ":dep burn-ndarray = {path = \"../../burn-ndarray\"}\n", + ":dep burn = {path = \"../../crates/burn\"}\n", + ":dep burn-ndarray = {path = \"../../crates/burn-ndarray\"}\n", "\n", "// The following dependencies are used for plotting\n", ":dep image = \"0.23\"\n",