SG++-Doxygen-Documentation
FISTA Solver

This example demonstrates the FISTA solver for a toy dataset using using the elastic net regularization method with various regularization penalties.

Create a two-dimensional grid with level 6.

grid->getGenerator().regular(6);

Then create a two dimensional dataset.

const auto num_examples = 3000;
auto dataset = DataMatrix(num_examples, 2);
auto y = DataVector(num_examples);
auto gen = std::mt19937_64(42);
auto dist = std::normal_distribution<double>(0, 0.1);
for (auto i = 0; i < num_examples; ++i) {
const double x1 = std::abs(std::sin(i));
const double x2 = std::abs(std::sin(i*x1));
const double comb = std::sinh(x1) * (x1 + x2) + dist(gen);
const auto row = DataVector(std::vector<double>({x1, x2}));
dataset.setRow(i, row);
y.set(i, comb);
}
std::cout << "Created grid with size: " << grid->getSize() << std::endl;
*grid, dataset);

Set up the weights for the grid.

auto weights = DataVector(grid->getSize());
weights.setAll(0.0);
double lambda = 1.0;
const double gamma = 0.98;

Iterate over a few regularization penalties.

for (int i = 0; i < 5; ++i) {
weights.setAll(0.0);
lambda /= 10;

Create an elastic net function and the corresponding fista solver.

auto g = sgpp::solver::ElasticNetFunction(lambda, gamma);
std::cout << "Start solving." << std::endl;

Here we solve the penalised linear system.

solver.solve(*op, weights, y, 500, 10e-5);
std::cout << "Finished solving." << std::endl;
auto prediction = DataVector(num_examples);

Finally, we calculate the root-mean-squared error of the prediction and print it.

op->mult(weights, prediction);
prediction.sub(y);
prediction.sqr();
const double rmse = std::sqrt((1.0/num_examples) * prediction.sum());
std::cout << "Lambda = " << lambda
<< " |weights|_2 = " << weights.l2Norm() << std::endl;
std::cout << "Residual = " << rmse << std::endl;
}
}