From a6a9d6848bdad35bf61c90ea83538e254e61b779 Mon Sep 17 00:00:00 2001 From: RichardScottOZ <72196131+RichardScottOZ@users.noreply.github.com> Date: Mon, 14 Feb 2022 08:06:33 +1030 Subject: [PATCH] Update README.md Minor edits. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 05d8e0b..a3710bf 100644 --- a/README.md +++ b/README.md @@ -30,7 +30,7 @@ g++ main.cpp /usr/local/lib/MLPP.so --std=c++17 ``` ## Usage -Please note that ML++ uses the ```std::vector``` data type for emulating vectors, and the ```std::vector>``` data type for emulating matricies. +Please note that ML++ uses the ```std::vector``` data type for emulating vectors, and the ```std::vector>``` data type for emulating matrices. Begin by including the respective header file of your choice. ```cpp @@ -40,7 +40,7 @@ Next, instantiate an object of the class. Don't forget to pass the input set and ```cpp LinReg model(inputSet, outputSet); ``` -Afterwards, 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. +Afterwards, 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 panel. ```cpp model.gradientDescent(0.001, 1000, 0); ```