From 97d738d4088b4eacc0ebea305c0f1803e46f39e1 Mon Sep 17 00:00:00 2001 From: udlbook <110402648+udlbook@users.noreply.github.com> Date: Wed, 20 Dec 2023 14:43:21 -0500 Subject: [PATCH] Update 13_2_Graph_Classification.ipynb --- Notebooks/Chap13/13_2_Graph_Classification.ipynb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Notebooks/Chap13/13_2_Graph_Classification.ipynb b/Notebooks/Chap13/13_2_Graph_Classification.ipynb index e0c15b0..c1f1c0b 100644 --- a/Notebooks/Chap13/13_2_Graph_Classification.ipynb +++ b/Notebooks/Chap13/13_2_Graph_Classification.ipynb @@ -191,7 +191,7 @@ "source": [ "# Let's test this network\n", "f = graph_neural_network(A,X, Omega0, beta0, Omega1, beta1, Omega2, beta2, omega3, beta3)\n", - "print(\"Your value is %3f: \"%(f[0,0]), \"True value of f: 0.498010\")" + "print(\"Your value is %3f: \"%(f[0,0]), \"True value of f: 0.310843\")" ], "metadata": { "id": "X7gYgOu6uIAt" @@ -221,7 +221,7 @@ "X_permuted = np.copy(X)\n", "\n", "f = graph_neural_network(A_permuted,X_permuted, Omega0, beta0, Omega1, beta1, Omega2, beta2, omega3, beta3)\n", - "print(\"Your value is %3f: \"%(f[0,0]), \"True value of f: 0.498010\")" + "print(\"Your value is %3f: \"%(f[0,0]), \"True value of f: 0.310843\")" ], "metadata": { "id": "F0zc3U_UuR5K" @@ -241,4 +241,4 @@ } } ] -} \ No newline at end of file +}