From 14068efe18995a9373563896e36e3ff6bd1e7498 Mon Sep 17 00:00:00 2001 From: Krishna Vedala <7001608+kvedala@users.noreply.github.com> Date: Sun, 31 May 2020 07:49:47 -0400 Subject: [PATCH] change test2 function to predict --- machine_learning/adaline_learning.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/machine_learning/adaline_learning.cpp b/machine_learning/adaline_learning.cpp index 6bfa2671d..73a8f4633 100644 --- a/machine_learning/adaline_learning.cpp +++ b/machine_learning/adaline_learning.cpp @@ -211,7 +211,7 @@ void test1(double eta = 0.01) { /** * test function to predict points in a 2D coordinate system above the line - * \f$x+y=-1\f$ as +1 and others as -1. + * \f$x+3y=-1\f$ as +1 and others as -1. * Note that each point is defined by 2 values or 2 features. * The function will create random sample points for training and test purposes. * \param[in] eta learning rate (optional, default=0.01)