From 935fc9f1946f038e9941fa94c8535f67d65c1efd Mon Sep 17 00:00:00 2001 From: partev Date: Wed, 20 Aug 2025 02:27:22 +0400 Subject: [PATCH] fix a typo in the graph label y=0 should be replaced with y=1 --- .../cmgf_logistic_regression_demo.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/notebooks/generalized_gaussian_ssm/cmgf_logistic_regression_demo.ipynb b/docs/notebooks/generalized_gaussian_ssm/cmgf_logistic_regression_demo.ipynb index 7838b417..3e84b4c3 100644 --- a/docs/notebooks/generalized_gaussian_ssm/cmgf_logistic_regression_demo.ipynb +++ b/docs/notebooks/generalized_gaussian_ssm/cmgf_logistic_regression_demo.ipynb @@ -183,7 +183,7 @@ ], "source": [ "plt.scatter(X[y==0, 1], X[y==0, 2], c='red', s=50, edgecolors='gray', label=r'$y=0$')\n", - "plt.scatter(X[y==1, 1], X[y==1, 2], c='black', s=50, edgecolors='gray', label=r'$y=0$')\n", + "plt.scatter(X[y==1, 1], X[y==1, 2], c='black', s=50, edgecolors='gray', label=r'$y=1$')\n", "plt.xlabel(r\"$x_1$\")\n", "plt.ylabel(r\"$x_2$\")\n", "plt.legend()\n",