mirror of
https://github.com/Relintai/pmlpp.git
synced 2024-11-09 13:22:09 +01:00
21 lines
305 B
C++
21 lines
305 B
C++
|
|
#include "sfw.h"
|
|
|
|
//#include "test/mlpp_tests.h"
|
|
//#include "test/mlpp_matrix_tests.h"
|
|
|
|
int main() {
|
|
SFWCore::setup();
|
|
|
|
//Ref<MLPPTests> tests;
|
|
//tests.instance();
|
|
|
|
//tests->test_statistics();
|
|
|
|
//tests->test_multivariate_linear_regression_gradient_descent(true);
|
|
|
|
SFWCore::cleanup();
|
|
|
|
return 0;
|
|
}
|