/usr/include/shogun/modelselection/GradientModelSelection.h is in libshogun-dev 3.2.0-7.5.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 | /*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
* Written (W) 2013 Roman Votyakov
* Copyright (C) 2012 Jacob Walker
*/
#ifndef CGRADIENTMODELSELECTION_H_
#define CGRADIENTMODELSELECTION_H_
#include <shogun/lib/config.h>
#ifdef HAVE_NLOPT
#include <shogun/modelselection/ModelSelection.h>
#include <shogun/modelselection/ParameterCombination.h>
namespace shogun
{
/** @brief Model selection class which searches for the best model by a
* gradient-search.
*/
class CGradientModelSelection : public CModelSelection
{
public:
/** default constructor */
CGradientModelSelection();
/** constructor
*
* NOTE: if model_parameters is NULL, then gradient model selection is
* performed on all parameters of the machine.
*
* @param machine_eval machine evaluation object
* @param model_parameters parameters
*/
CGradientModelSelection(CMachineEvaluation* machine_eval,
CModelSelectionParameters* model_parameters=NULL);
virtual ~CGradientModelSelection();
/** method to select model via gradient search
*
* @param print_state if true, the output is verbose
*
* @return best combination of model parameters
*/
virtual CParameterCombination* select_model(bool print_state=false);
/** returns the name of the model selection object
*
* @return name GradientModelSelection
*/
virtual const char* get_name() const { return "GradientModelSelection"; }
/** set the maximum number of evaluations used in the optimization algorithm
*
* @param max_evaluations maximum number of evaluations
*/
void set_max_evaluations(uint32_t max_evaluations)
{
m_max_evaluations=max_evaluations;
}
/** get the maximum number evaluations used in the optimization algorithm
*
* @return number of maximum evaluations
*/
uint32_t get_max_evaluations() const { return m_max_evaluations; }
/** set the minimum level of gradient tolerance used in the optimization
* algorithm
*
* @param grad_tolerance tolerance level
*/
void set_grad_tolerance(float64_t grad_tolerance)
{
m_grad_tolerance=grad_tolerance;
}
/** get the minimum level of gradient tolerance used in the optimization
* algorithm
*
* @return tolerance level
*/
float64_t get_grad_tolerance() const { return m_grad_tolerance; }
private:
/** initialize object */
void init();
protected:
/** maximum number of evaluations used in optimization algorithm */
uint32_t m_max_evaluations;
/** gradient tolerance used in optimization algorithm */
float64_t m_grad_tolerance;
};
}
#endif /* HAVE_NLOPT */
#endif /* CGRADIENTMODELSELECTION_H_ */
|