Update README.md

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

View File

@ -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);
```