SG++-Doxygen-Documentation
Loading...
Searching...
No Matches
learner SGDE

This examples demonstrates density estimation.

#include <random>
#include <string>
A class to store two-dimensional data.
Definition DataMatrix.hpp:28
A class to store one-dimensional data.
Definition DataVector.hpp:25
Abstract class that defines the interfaces for the different grid's GridGenerators.
Definition GridGenerator.hpp:26
abstract base class for all types grids used in sgpp the class gives pure virtual function definition...
Definition Grid.hpp:191
Generic hash table based storage of grid points.
Definition HashGridStorage.hpp:42

First define an auxiliary function randu that returns a random point (uniform, normal).

void randu(DataVector& rvar, std::mt19937& generator) {
std::uniform_real_distribution<double> distribution(0.0, 1.0);
for (size_t j = 0; j < rvar.getSize(); ++j) {
rvar[j] = distribution(generator);
}
}
void randn(DataVector& rvar, std::mt19937& generator) {
std::normal_distribution<double> distribution(0.5, 0.1);
for (size_t j = 0; j < rvar.getSize(); ++j) {
double value = -1.0;
while (value <= 0.0 || value >= 1.0) {
value = distribution(generator);
rvar[j] = value;
}
}
}

Second define another auxiliary function that calls the one defined above multiple times and returns a matrix of random points (uniform, normal)

void randu(DataMatrix& rvar, std::uint64_t seedValue = std::mt19937_64::default_seed) {
size_t nsamples = rvar.getNrows(), ndim = rvar.getNcols();
std::mt19937 generator(static_cast<std::mt19937::result_type>(seedValue));
DataVector sample(ndim);
for (size_t i = 0; i < nsamples; ++i) {
randu(sample, generator);
rvar.setRow(i, sample);
}
}
void randn(DataMatrix& rvar, std::uint64_t seedValue = std::mt19937_64::default_seed) {
size_t nsamples = rvar.getNrows(), ndim = rvar.getNcols();
std::mt19937 generator(static_cast<std::mt19937::result_type>(seedValue));
DataVector sample(ndim);
for (size_t i = 0; i < nsamples; ++i) {
randn(sample, generator);
rvar.setRow(i, sample);
}
}

Now the main function begins by loading the test data from a file specified in the string filename.

int main(int argc, char** argv) {
int main()
Definition densityMultiplication.cpp:22

Define number of dimensions of the toy problem.

size_t numDims = 3;

Load normally distributed samples.

sgpp::base::DataMatrix samples(1000, numDims);
randn(samples);

Configure the sparse grid of level 3 with linear basis functions and the same dimension as the given test data.
Alternatively load a sparse grid that has been saved to a file, see the commented line.

std::cout << "# create grid config" << std::endl;
gridConfig.dim_ = numDims;
gridConfig.level_ = 3;
int level_
number of levels
Definition Grid.hpp:92
size_t dim_
number of dimensions
Definition Grid.hpp:90
sgpp::base::GridType type_
Grid Type, see enum.
Definition Grid.hpp:88
structure that can be used by applications to cluster regular grid information
Definition Grid.hpp:111

Configure the adaptive refinement. Therefore the number of refinements and the number of points are specified.

std::cout << "# create adaptive refinement config" << std::endl;
sgpp::base::AdaptivityConfiguration adaptivityConfig
Definition multHPX.cpp:37
structure that can be used by application to define adaptivity strategies
Definition Grid.hpp:143
size_t numRefinementPoints_
max. number of points to be refined
Definition Grid.hpp:157
size_t numRefinements_
number of refinements
Definition Grid.hpp:145

Configure the solver. The solver type is set to the conjugent gradient method and the maximum number of iterations, the tolerance epsilon and the threshold are specified.

std::cout << "# create solver config" << std::endl;
solverConfig.maxIterations_ = 1000;
solverConfig.eps_ = 1e-14;
solverConfig.threshold_ = 1e-14;
solverConfig.verbose_ = true;
Definition TypesSolver.hpp:19
sgpp::solver::SLESolverType type_
Definition TypesSolver.hpp:20
double eps_
Definition TypesSolver.hpp:21
bool verbose_
Definition TypesSolver.hpp:24
double threshold_
Definition TypesSolver.hpp:23
size_t maxIterations_
Definition TypesSolver.hpp:22

Configure the regularization for the laplacian operator.

std::cout << "# create regularization config" << std::endl;
Definition RegularizationConfiguration.hpp:17
RegularizationType type_
Definition RegularizationConfiguration.hpp:18

Configure the learner by specifying:

Create the learner using the configurations set above. Then initialize it with the data read from the file in the first step and train the learner.

std::cout << "# creating the learner" << std::endl;
regularizationConfig, crossvalidationConfig,
sgdeConfig);
learner.initialize(samples);
Definition SparseGridDensityEstimator.hpp:82

Estimate the probability density function (pdf) via a Gaussian kernel density estimation (KDE) and print the corresponding values.

sgpp::base::DataVector x(learner.getDim(), 0.5);
std::cout << "--------------------------------------------------------\n";
std::cout << learner.getSurpluses().getSize() << " -> " << learner.getSurpluses().sum() << "\n";
std::cout << "pdf_SGDE(x) = " << learner.pdf(x) << " ~ " << kde.pdf(x) << " =pdf_KDE(x)\n";
std::cout << "mean_SGDE(x) = " << learner.mean() << " ~ " << kde.mean() << " = mean_KDE(x)\n";
std::cout << "var_SGDE(x) = " << learner.variance() << " ~ " << kde.variance() << "=var_KDE(x)\n";
sgpp::base::DataMatrix* bounds = new DataMatrix(gridConfig.dim_, 2);
for (size_t idim = 0; idim < gridConfig.dim_; idim++) {
bounds->set(idim, 0, 0.0);
bounds->set(idim, 1, 1.0);
}
void set(size_t row, size_t col, double value)
Sets the element at position [row,col] to value.
Definition DataMatrix.hpp:293
Definition KernelDensityEstimator.hpp:68

Print the covariances.

sgpp::base::DataMatrix C(gridConfig.dim_, gridConfig.dim_);
std::cout << "---------------------- Cov_SGDE ------------------------------" << std::endl;
learner.cov(C, bounds);
std::cout << C.toString() << std::endl;
std::cout << "---------------------- Cov KDE--------------------------------" << std::endl;
kde.cov(C);
std::cout << C.toString() << std::endl;

Apply the inverse Rosenblatt transformation to a matrix of random points. To do this first generate the random points via randu, then initialize an inverse Rosenblatt transformation operation and apply it to the points. Finally print the calculated values.

std::cout << "------------------------------------------------------" << std::endl;
// inverse Rosenblatt transformation
sgpp::base::DataMatrix points(12, gridConfig.dim_);
randu(points);
std::cout << "------------------------------------------------------" << std::endl;
std::cout << "uniform space" << std::endl;
std::cout << points.toString() << std::endl;
sgpp::base::DataMatrix pointsCdf(points.getNrows(), points.getNcols());
opInvRos->doTransformation(&learner.getSurpluses(), &points, &pointsCdf);
Sampling on all dimensions.
Definition OperationInverseRosenblattTransformation.hpp:20
datadriven::OperationInverseRosenblattTransformation * createOperationInverseRosenblattTransformation(base::Grid &grid)
Factory method, returning an OperationInverseRosenblattTransformation for the grid.
Definition DatadrivenOpFactory.cpp:325

To check whether the results are correct, perform a Rosenblatt transformation on the data that has been created by the inverse Rosenblatt transformation above and print the calculated values.

points.setAll(0.0);
opRos->doTransformation(&learner.getSurpluses(), &pointsCdf, &points);
std::cout << "------------------------------------------------------" << std::endl;
std::cout << "original space" << std::endl;
std::cout << pointsCdf.toString() << std::endl;
std::cout << "------------------------------------------------------" << std::endl;
std::cout << "uniform space" << std::endl;
std::cout << points.toString() << std::endl;
}
Sampling on all dimensions.
Definition OperationRosenblattTransformation.hpp:19
datadriven::OperationRosenblattTransformation * createOperationRosenblattTransformation(base::Grid &grid)
Factory method, returning an OperationRosenblattTransformation for the grid.
Definition DatadrivenOpFactory.cpp:263