12 #ifndef MLPACK_CORE_OPTIMIZERS_GRID_SEARCH_GRID_SEARCH_HPP 13 #define MLPACK_CORE_OPTIMIZERS_GRID_SEARCH_GRID_SEARCH_HPP 18 namespace optimization {
43 template<
typename FunctionType>
45 FunctionType&
function,
46 arma::mat& bestParameters,
57 template<
typename FunctionType>
59 FunctionType&
function,
60 double& bestObjective,
61 arma::mat& bestParameters,
62 arma::vec& currentParameters,
71 #include "grid_search_impl.hpp" Auxiliary information for a dataset, including mappings to/from strings (or other types) and the data...
An optimizer that finds the minimum of a given function by iterating through points on a multidimensi...
double Optimize(FunctionType &function, arma::mat &bestParameters, data::DatasetMapper< data::IncrementPolicy, double > &datasetInfo)
Optimize (minimize) the given function by iterating through the all possible combinations of values f...
Include all of the base components required to write mlpack methods, and the main mlpack Doxygen docu...