13#ifndef MLPACK_CORE_UTIL_PARAM_DATA_HPP
14#define MLPACK_CORE_UTIL_PARAM_DATA_HPP
17#include <boost/any.hpp>
22#define TYPENAME(x) (std::string(typeid(x).name()))
29template<
typename PolicyType,
typename InputType>
32using DatasetInfo = DatasetMapper<IncrementPolicy, std::string>;
DatasetMapper< data::IncrementPolicy > DatasetInfo
Linear algebra utility functions, generally performed on matrices or vectors.
The core includes that mlpack expects; standard C++ includes and Armadillo.
This structure holds all of the information about a single parameter, including its value (which is s...
bool noTranspose
True if this is a matrix that should not be transposed.
char alias
Alias for this parameter.
std::string desc
Description of this parameter, if any.
bool wasPassed
True if the option was passed to the program.
boost::any value
The actual value that is held.
std::string tname
Type information of this parameter.
bool required
True if this option is required.
bool input
True if this option is an input option (otherwise, it is output).
bool loaded
If this is an input parameter that needs extra loading, this indicates whether or not it has been loa...
std::string name
Name of this parameter.
std::string cppType
The true name of the type, as it would be written in C++.
bool persistent
If this should be preserved across different settings (i.e.