Feat C++ API
A feature engineering automation tool
simulated_annealing.h
Go to the documentation of this file.
1 /* FEAT
2 copyright 2017 William La Cava
3 license: GNU/GPL v3
4 */
5 #ifndef SIMANNEAL_H
6 #define SIMANNEAL_H
7 
8 #include "selection_operator.h"
9 
10 namespace FT{
11 
12  namespace Sel{
14 
18  {
21  SimAnneal(bool surv);
22 
23  ~SimAnneal();
24 
25  vector<size_t> select(Population& pop,
26  const Parameters& params, const Data& d);
27  vector<size_t> survive(Population& pop,
28  const Parameters& params, const Data& d);
29  private:
30  float t;
31  float t0;
32  };
33  }
34 }
35 #endif
data holding X, y, and Z data
Definition: data.h:42
T pop(vector< T > *v)
Definition: auto_backprop.h:49
main Feat namespace
Definition: data.cc:13
holds the hyperparameters for Feat.
Definition: params.h:25
Defines a population of programs and functions for constructing them.
Definition: population.h:28
base class for selection operators.
float t
annealing temperature
float t0
initial temperature
vector< size_t > select(Population &pop, const Parameters &params, const Data &d)
vector< size_t > survive(Population &pop, const Parameters &params, const Data &d)