7 #ifndef MLPACK_BINDINGS_JULIA_PRINT_OUTPUT_PROCESSING_HPP 8 #define MLPACK_BINDINGS_JULIA_PRINT_OUTPUT_PROCESSING_HPP 22 const util::ParamData& d,
23 const std::string& functionName,
25 const typename std::enable_if<!std::is_same<T,
26 std::tuple<data::DatasetInfo, arma::mat>>::value>::type* = 0);
33 const util::ParamData& d,
34 const std::string& functionName,
35 const typename std::enable_if<arma::is_arma_type<T>::value>::type* = 0,
36 const typename std::enable_if<!std::is_same<T,
37 std::tuple<data::DatasetInfo, arma::mat>>::value>::type* = 0);
44 const util::ParamData& d,
45 const std::string& functionName,
46 const typename std::enable_if<!arma::is_arma_type<T>::value>::type* = 0,
48 const typename std::enable_if<!std::is_same<T,
49 std::tuple<data::DatasetInfo, arma::mat>>::value>::type* = 0);
56 const util::ParamData& d,
57 const std::string& functionName,
58 const typename std::enable_if<std::is_same<T,
59 std::tuple<data::DatasetInfo, arma::mat>>::value>::type* = 0);
70 PrintOutputProcessing<typename std::remove_pointer<T>::type>(d,
71 *((std::string*) input));
78 #include "print_output_processing_impl.hpp"
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 PrintOutputProcessing(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 output processing (basically calling CLI::GetParam<>()) for a non-serializable type...