7 #ifndef MLPACK_BINDINGS_JULIA_PRINT_INPUT_PROCESSING_HPP 8 #define MLPACK_BINDINGS_JULIA_PRINT_INPUT_PROCESSING_HPP 20 const util::ParamData& d,
21 const std::string& functionName,
23 const typename std::enable_if<!std::is_same<T,
24 std::tuple<data::DatasetInfo, arma::mat>>::value>::type* = 0);
31 const util::ParamData& d,
32 const std::string& functionName,
33 const typename std::enable_if<arma::is_arma_type<T>::value>::type* = 0,
34 const typename std::enable_if<!std::is_same<T,
35 std::tuple<data::DatasetInfo, arma::mat>>::value>::type* = 0);
42 const util::ParamData& d,
43 const std::string& functionName,
44 const typename std::enable_if<!arma::is_arma_type<T>::value>::type* = 0,
46 const typename std::enable_if<!std::is_same<T,
47 std::tuple<data::DatasetInfo, arma::mat>>::value>::type* = 0);
55 const util::ParamData& d,
56 const std::string& functionName,
57 const typename std::enable_if<std::is_same<T,
58 std::tuple<data::DatasetInfo, arma::mat>>::value>::type* = 0);
69 PrintInputProcessing<typename std::remove_pointer<T>::type>(d,
70 *((std::string*) input));
77 #include "print_input_processing_impl.hpp"
This structure holds all of the information about a single parameter, including its value (which is s...
void PrintInputProcessing(const util::ParamData &d, const std::string &functionName, 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)
Print the input processing (basically calling CLI::GetParam<>()) for a non-serializable type...