12 #ifndef MLPACK_BINDINGS_CLI_STRING_TYPE_PARAM_IMPL_HPP 13 #define MLPACK_BINDINGS_CLI_STRING_TYPE_PARAM_IMPL_HPP 59 std::string* outstr = (std::string*) output;
65 inline void StringTypeParam<bool>(util::ParamData& ,
69 std::string* outstr = (std::string*) output;
75 inline void StringTypeParam<std::string>(util::ParamData& ,
79 std::string* outstr = (std::string*) output;
85 inline void StringTypeParam<double>(util::ParamData& ,
89 std::string* outstr = (std::string*) output;
95 inline void StringTypeParam<std::tuple<mlpack::data::DatasetInfo, arma::mat>>(
100 std::string* outstr = (std::string*) output;
Definition: has_serialize.hpp:47
Linear algebra utility functions, generally performed on matrices or vectors.
Definition: cv.hpp:1
std::string StringTypeParamImpl(const typename std::enable_if<!util::IsStdVector< T >::value >::type *=0, const typename std::enable_if<!data::HasSerialize< T >::value >::type *=0)
Return a string containing the type of the parameter.
Definition: string_type_param_impl.hpp:25
This structure holds all of the information about a single parameter, including its value (which is s...
Definition: param_data.hpp:52
Metaprogramming structure for vector detection.
Definition: is_std_vector.hpp:23