Go to the source code of this file.
|
| template<typename T > |
| std::string | GetPrintableType (const 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) |
| | Return a string representing the command-line type of an option. More...
|
| |
| template<typename T > |
| std::string | GetPrintableType (const util::ParamData &data, const typename std::enable_if< util::IsStdVector< T >::value >::type *=0) |
| | Return a string representing the command-line type of a vector. More...
|
| |
| template<typename T > |
| std::string | GetPrintableType (const util::ParamData &data, const typename std::enable_if< arma::is_arma_type< T >::value >::type *=0) |
| | Return a string representing the command-line type of a matrix option. More...
|
| |
| template<typename T > |
| std::string | GetPrintableType (const util::ParamData &data, const typename std::enable_if< std::is_same< T, std::tuple< data::DatasetInfo, arma::mat >>::value >::type *=0) |
| | Return a string representing the command-line type of a matrix tuple option. More...
|
| |
| template<typename T > |
| std::string | GetPrintableType (const util::ParamData &data, const typename boost::disable_if< arma::is_arma_type< T >>::type *=0, const typename boost::enable_if< data::HasSerialize< T >>::type *=0) |
| | Return a string representing the command-line type of a model. More...
|
| |
| template<typename T > |
| void | GetPrintableType (const util::ParamData &data, const void *, void *output) |
| | Print the command-line type of an option into a string. More...
|
| |