12 #ifndef MLPACK_BINDINGS_CLI_OUTPUT_PARAM_HPP 13 #define MLPACK_BINDINGS_CLI_OUTPUT_PARAM_HPP 28 const util::ParamData& data,
29 const typename boost::disable_if<arma::is_arma_type<T>>::type* = 0,
30 const typename boost::disable_if<util::IsStdVector<T>>::type* = 0,
31 const typename boost::disable_if<data::HasSerialize<T>>::type* = 0,
32 const typename boost::disable_if<std::is_same<T,
33 std::tuple<data::DatasetInfo, arma::mat>>>::type* = 0);
40 const util::ParamData& data,
41 const typename boost::enable_if<util::IsStdVector<T>>::type* = 0);
48 const util::ParamData& data,
49 const typename boost::enable_if<arma::is_arma_type<T>>::type* = 0);
56 const util::ParamData& data,
57 const typename boost::disable_if<arma::is_arma_type<T>>::type* = 0,
58 const typename boost::enable_if<data::HasSerialize<T>>::type* = 0);
65 const util::ParamData& data,
66 const typename boost::enable_if<std::is_same<T,
67 std::tuple<data::DatasetInfo, arma::mat>>>::type* = 0);
78 OutputParamImpl<typename std::remove_pointer<T>::type>(data);
86 #include "output_param_impl.hpp" void OutputParam(const util::ParamData &data, const void *, void *)
Output an option.
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...
void OutputParamImpl(const util::ParamData &data, const typename boost::disable_if< arma::is_arma_type< T >>::type *=0, const typename boost::disable_if< util::IsStdVector< T >>::type *=0, const typename boost::disable_if< data::HasSerialize< T >>::type *=0, const typename boost::disable_if< std::is_same< T, std::tuple< data::DatasetInfo, arma::mat >>>::type *=0)
Output an option (print to stdout).