12 #ifndef MLPACK_BINDINGS_JULIA_PRINT_INPUT_PROCESSING_HPP 13 #define MLPACK_BINDINGS_JULIA_PRINT_INPUT_PROCESSING_HPP 25 const util::ParamData& d,
26 const std::string& functionName,
28 const typename std::enable_if<!std::is_same<T,
29 std::tuple<data::DatasetInfo, arma::mat>>::value>::type* = 0);
36 const util::ParamData& d,
37 const std::string& functionName,
38 const typename std::enable_if<arma::is_arma_type<T>::value>::type* = 0,
39 const typename std::enable_if<!std::is_same<T,
40 std::tuple<data::DatasetInfo, arma::mat>>::value>::type* = 0);
47 const util::ParamData& d,
48 const std::string& functionName,
49 const typename std::enable_if<!arma::is_arma_type<T>::value>::type* = 0,
51 const typename std::enable_if<!std::is_same<T,
52 std::tuple<data::DatasetInfo, arma::mat>>::value>::type* = 0);
60 const util::ParamData& d,
61 const std::string& functionName,
62 const typename std::enable_if<std::is_same<T,
63 std::tuple<data::DatasetInfo, arma::mat>>::value>::type* = 0);
74 PrintInputProcessing<typename std::remove_pointer<T>::type>(d,
75 *((std::string*) input));
82 #include "print_input_processing_impl.hpp" Linear algebra utility functions, generally performed on matrices or vectors.
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...