From 3fb5edd2ebb20c56b802869882f4c7e324c767c0 Mon Sep 17 00:00:00 2001 From: marc <78002988+novak-99@users.noreply.github.com> Date: Thu, 27 May 2021 22:59:39 -0700 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3cb0f2f..491443b 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ Next, instantiate an object of the class. Don't forget to pass the input set and ```cpp LinReg model(inputSet, outputSet); ``` -Next, call the optimizer that you would like to use. For iterative optimizers such as gradient descent, include the learning rate, epoch number, and whether or not to utilize the UI pannel. +Now call the optimizer that you would like to use. For iterative optimizers such as gradient descent, include the learning rate, epoch number, and whether or not to utilize the UI pannel. ```cpp model.gradientDescent(0.001, 1000, 0); ```