12#ifndef MLPACK_BINDINGS_CLI_OUTPUT_PARAM_HPP
13#define MLPACK_BINDINGS_CLI_OUTPUT_PARAM_HPP
29 const typename boost::disable_if<arma::is_arma_type<T>>::type* = 0,
32 const typename boost::disable_if<std::is_same<T,
33 std::tuple<data::DatasetInfo, arma::mat>>>::type* = 0);
49 const typename boost::enable_if<arma::is_arma_type<T>>::type* = 0);
57 const typename boost::disable_if<arma::is_arma_type<T>>::type* = 0,
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 OutputParamImpl(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).
void OutputParam(util::ParamData &data, const void *, void *)
Output an option.
Linear algebra utility functions, generally performed on matrices or vectors.
The core includes that mlpack expects; standard C++ includes and Armadillo.
Metaprogramming structure for vector detection.
This structure holds all of the information about a single parameter, including its value (which is s...