pmlpp/platform/main.cpp
2024-01-25 16:33:10 +01:00

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;
}