From 47b9c5f2666272e69de499fd88fc7b03a1199bde Mon Sep 17 00:00:00 2001 From: marc <78002988+novak-99@users.noreply.github.com> Date: Fri, 28 May 2021 22:46:13 -0700 Subject: [PATCH 1/3] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 10424dc..0466d00 100644 --- a/README.md +++ b/README.md @@ -46,7 +46,7 @@ model.modelTest(testSetInstance); ``` This will return the model's singular prediction for that example. -To test an entire dataset of instances, use the following function: +To test an entire dataset of testing instances, use the following function: ```cpp model.modelSetTest(testSet); ``` From b4eb01597f731f44dbe01f8c09278c111f3b0d94 Mon Sep 17 00:00:00 2001 From: marc <78002988+novak-99@users.noreply.github.com> Date: Fri, 28 May 2021 22:54:17 -0700 Subject: [PATCH 2/3] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 0466d00..28d750b 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ Machine learning is a vast and exiciting discipline, garnering attention from sp

## Installation -Begin by downloading the header files for the ML++ library. You can do this by cloning the repository into a local directory and extracting the MLPP directory within it, as well as the "MLPP.so" file. +Begin by downloading the header files for the ML++ library. You can do this by cloning the repository and extracting the MLPP directory within it, as well as the "MLPP.so" file. ``` git clone https://github.com/novak-99/MLPP ``` @@ -20,7 +20,7 @@ int main(){ ... } ``` -Finally, after you have concluded writing your file, compile it using g++. Be sure to have the MLPP.so file in a local directory. +Finally, after you have concluded creating a project, compile it using g++. Be sure to store the MLPP.so file in a local directory. ``` g++ main.cpp MLPP.so --std=c++17 ``` From 3bf1333c28ff9f405dc840a532539f57ad619a6f Mon Sep 17 00:00:00 2001 From: marc <78002988+novak-99@users.noreply.github.com> Date: Fri, 28 May 2021 22:55:59 -0700 Subject: [PATCH 3/3] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 28d750b..49b2285 100644 --- a/README.md +++ b/README.md @@ -46,7 +46,7 @@ model.modelTest(testSetInstance); ``` This will return the model's singular prediction for that example. -To test an entire dataset of testing instances, use the following function: +To test an entire test set, use the following function: ```cpp model.modelSetTest(testSet); ```