PEC-CSS / slowmokit

Library which can be used for machine learning in C++.
https://pec-css.github.io/slowmokit/
GNU General Public License v2.0
16 stars 16 forks source link

Implemented MSE #93

Closed YashitaBansal closed 1 year ago

YashitaBansal commented 1 year ago

INPUT: std::vector<double> actual = {1.0, 2.0, 3.0} std::vector<double> pred = {0.5, 1.5, 2.5}

OUPTUT: Mean Squared Error: 0.25

harshjohar commented 1 year ago

Fix the clang-format