Update README.md

This commit is contained in:
marc 2021-05-27 22:59:13 -07:00 committed by GitHub
parent 1abff6c00d
commit 7e13602e4b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -14,7 +14,7 @@ Begin by including the respective header file of your choice.
```cpp ```cpp
#include "MLPP/LinReg/LinReg.hpp" #include "MLPP/LinReg/LinReg.hpp"
``` ```
Next, instantiate an object of the class. Don't forget to pass the input set, output set as parameters. Next, instantiate an object of the class. Don't forget to pass the input set and output set as parameters.
```cpp ```cpp
LinReg model(inputSet, outputSet); LinReg model(inputSet, outputSet);
``` ```