14 #ifndef MLPACK_BINDINGS_CLI_GET_PRINTABLE_PARAM_VALUE_IMPL_HPP 15 #define MLPACK_BINDINGS_CLI_GET_PRINTABLE_PARAM_VALUE_IMPL_HPP 30 const std::string& input,
31 const typename std::enable_if<!arma::is_arma_type<T>::value>::type*,
33 const typename std::enable_if<!std::is_same<T,
34 std::tuple<data::DatasetInfo, arma::mat>>::value>::type*)
46 const std::string& input,
47 const typename std::enable_if<arma::is_arma_type<T>::value>::type*)
49 return input +
".csv";
59 const std::string& input,
60 const typename std::enable_if<!arma::is_arma_type<T>::value>::type*,
63 return input +
".bin";
73 const std::string& input,
74 const typename std::enable_if<std::is_same<T,
75 std::tuple<data::DatasetInfo, arma::mat>>::value>::type*)
77 return input +
".arff";
std::string GetPrintableParamValue(util::ParamData &data, const std::string &value, const typename std::enable_if<!arma::is_arma_type< T >::value >::type *=0, const typename std::enable_if<!data::HasSerialize< T >::value >::type *=0, const typename std::enable_if<!std::is_same< T, std::tuple< data::DatasetInfo, arma::mat >>::value >::type *=0)
Get the parameter name for a type that has no special handling.
Definition: get_printable_param_value_impl.hpp:28
Definition: has_serialize.hpp:47
Linear algebra utility functions, generally performed on matrices or vectors.
Definition: cv.hpp:1
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...
Definition: param_data.hpp:52