mlpack 3.4.2
get_printable_param_value.hpp
Go to the documentation of this file.
1
13#ifndef MLPACK_BINDINGS_MARKDOWN_GET_PRINTABLE_PARAM_VALUE_HPP
14#define MLPACK_BINDINGS_MARKDOWN_GET_PRINTABLE_PARAM_VALUE_HPP
15
16#include <mlpack/prereqs.hpp>
18
19namespace mlpack {
20namespace bindings {
21namespace markdown {
22
26template<typename T>
28 util::ParamData& data,
29 const std::string& value,
30 const typename boost::disable_if<arma::is_arma_type<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);
34
39template<typename T>
41 util::ParamData& data,
42 const std::string& value,
43 const typename boost::enable_if<arma::is_arma_type<T>>::type* = 0);
44
49template<typename T>
51 util::ParamData& data,
52 const std::string& value,
53 const typename boost::disable_if<arma::is_arma_type<T>>::type* = 0,
54 const typename boost::enable_if<data::HasSerialize<T>>::type* = 0);
55
60template<typename T>
62 util::ParamData& data,
63 const std::string& value,
64 const typename boost::enable_if<std::is_same<T,
65 std::tuple<data::DatasetInfo, arma::mat>>>::type* = 0);
66
70template<typename T>
73 const void* input,
74 void* output)
75{
76 *((std::string*) output) =
77 GetPrintableParamValue<typename std::remove_pointer<T>::type>(d,
78 *((std::string*) input));
79}
80
81} // namespace markdown
82} // namespace bindings
83} // namespace mlpack
84
85// Include implementation.
86#include "get_printable_param_value_impl.hpp"
87
88#endif
std::string GetPrintableParamValue(util::ParamData &data, const std::string &value, const typename boost::disable_if< arma::is_arma_type< 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)
Get the parameter name for a type that has no special handling.
Linear algebra utility functions, generally performed on matrices or vectors.
Definition: cv.hpp:1
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...
Definition: param_data.hpp:53