60 typedef std::tuple
::type> TupleType; 61 TupleType& tuple = *boost::any_cast
(&d.value); 62 std::string& value = std::get<1>(tuple);
64 const TupleType& inputTuple = *boost::any_cast
(&input.value); 65 value = std::get<1>(inputTuple);
82 InPlaceCopyInternal
::type>( boost::any value
The actual value that is held.
Linear algebra utility functions, generally performed on matrices or vectors.
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 InPlaceCopy(util::ParamData &d, const void *input, void *)
Make the given ParamData be an in-place copy of the input.
void InPlaceCopyInternal(util::ParamData &, util::ParamData &, 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< mlpack::data::DatasetInfo, arma::mat >>>::type *=0)
This overload is called when nothing special needs to happen to make something an in-place copy...