13 #ifndef MLPACK_BINDINGS_CLI_STRING_TYPE_PARAM_HPP 14 #define MLPACK_BINDINGS_CLI_STRING_TYPE_PARAM_HPP 29 const typename boost::disable_if<util::IsStdVector<T>>::type* = 0,
30 const typename boost::disable_if<data::HasSerialize<T>>::type* = 0);
37 const typename boost::enable_if<util::IsStdVector<T>>::type* = 0);
44 const typename boost::enable_if<data::HasSerialize<T>>::type* = 0);
55 std::string* outstr = (std::string*) output;
56 *outstr = StringTypeParamImpl<T>();
73 inline void StringTypeParam<std::string>(
const util::ParamData& ,
85 inline void StringTypeParam<std::tuple<mlpack::data::DatasetInfo, arma::mat>>(
86 const util::ParamData& ,
95 #include "string_type_param_impl.hpp" Linear algebra utility functions, generally performed on matrices or vectors.
void StringTypeParam(const util::ParamData &, const void *, void *output)
Return a string containing the type of a parameter.
The core includes that mlpack expects; standard C++ includes and Armadillo.
void StringTypeParam< int >(const util::ParamData &, const void *, void *output)
Return "int".
This structure holds all of the information about a single parameter, including its value (which is s...
void StringTypeParam< bool >(const util::ParamData &, const void *, void *output)
Return "bool".
std::string StringTypeParamImpl(const typename boost::disable_if< util::IsStdVector< T >>::type *=0, const typename boost::disable_if< data::HasSerialize< T >>::type *=0)
Return a string containing the type of the parameter.
void StringTypeParam< double >(const util::ParamData &, const void *, void *output)
Return "double".