pmlpp/platform/main/main.cpp

21 lines
295 B
C++
Raw Normal View History

2024-01-25 12:49:59 +01:00
2024-01-25 16:33:10 +01:00
#include "sfw.h"
#include "test/mlpp_tests.h"
#include "test/mlpp_matrix_tests.h"
2024-01-25 16:33:10 +01:00
2024-01-25 12:49:59 +01:00
int main() {
2024-01-25 16:33:10 +01:00
SFWCore::setup();
Ref<MLPPTests> tests;
tests.instance();
2024-01-25 16:33:10 +01:00
tests->test_statistics();
2024-01-25 16:33:10 +01:00
//tests->test_multivariate_linear_regression_gradient_descent(true);
SFWCore::cleanup();
2024-01-25 12:49:59 +01:00
2024-01-25 16:33:10 +01:00
return 0;
2024-01-25 12:49:59 +01:00
}