Skip to content

Latest commit

 

History

History
14 lines (13 loc) · 632 Bytes

README.md

File metadata and controls

14 lines (13 loc) · 632 Bytes

C++ machine learning

1 Linear Regression :

Use documents : LinearRegression.hpp, VectorOperations.hpp, Dataset.hpp, test.cpp

Record :

In order to compare the fitting function with the target, we don't use feature scaling, so it shows more importance to optimize the range of x and learning rate.

Finished on: 2021.10.6

Latest updated: 2021.10.13

2 Perceptron :

Use documents : Perceptron.hpp, VectorOperations.hpp, Dataset.hpp, test.cpp

Record :

Use original form of perceptron

Finished on : 2021.10.13

Latest updated: 2021.10.13