From a09fc515f56acfd0a057858859f1407ec46da6f4 Mon Sep 17 00:00:00 2001 From: Enrico Deusebio Date: Mon, 2 Jun 2025 11:08:32 +0200 Subject: [PATCH] fix typo --- Chapter03/05_GraphAutoEncoder_StellarGraph.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Chapter03/05_GraphAutoEncoder_StellarGraph.ipynb b/Chapter03/05_GraphAutoEncoder_StellarGraph.ipynb index c93b1bf..e080818 100644 --- a/Chapter03/05_GraphAutoEncoder_StellarGraph.ipynb +++ b/Chapter03/05_GraphAutoEncoder_StellarGraph.ipynb @@ -60,7 +60,7 @@ "\n", "edge_splitter_train = EdgeSplitter(G_test)\n", "\n", - "G_train, edge_ids_train, edge_labels_train = edge_splitter_test.train_test_split(\n", + "G_train, edge_ids_train, edge_labels_train = edge_splitter_train.train_test_split(\n", " p=0.1, method=\"global\", keep_connected=True\n", ")" ]