From 53ddb1626d49e6842b27f6c8ffd1cab90d9bdd99 Mon Sep 17 00:00:00 2001 From: Ralph Liu Date: Tue, 25 Jul 2023 08:43:44 -0700 Subject: [PATCH] Notebook algorithm fix --- notebooks/algorithms/structure/Renumber-2.ipynb | 2 +- notebooks/algorithms/structure/Symmetrize.ipynb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/notebooks/algorithms/structure/Renumber-2.ipynb b/notebooks/algorithms/structure/Renumber-2.ipynb index 666972b5571..479df53c6be 100755 --- a/notebooks/algorithms/structure/Renumber-2.ipynb +++ b/notebooks/algorithms/structure/Renumber-2.ipynb @@ -82,7 +82,7 @@ "source": [ "# Import a built-in dataset\n", "from cugraph.datasets import cyber\n", - "gdf = cyber.get_edgelist(fetch=True)" + "gdf = cyber.get_edgelist(download=True)" ] }, { diff --git a/notebooks/algorithms/structure/Symmetrize.ipynb b/notebooks/algorithms/structure/Symmetrize.ipynb index 0a9f962b98e..5d5b270708a 100755 --- a/notebooks/algorithms/structure/Symmetrize.ipynb +++ b/notebooks/algorithms/structure/Symmetrize.ipynb @@ -83,7 +83,7 @@ "from cugraph.datasets import karate\n", "\n", "# This is the symmetrized dataset\n", - "test_gdf = karate.get_edgelist(fetch=True)" + "test_gdf = karate.get_edgelist(download=True)" ] }, {