Stan  2.10.0
probability, sampling & optimization
arg_variational_eta.hpp
Go to the documentation of this file.
1 #ifndef STAN_SERVICES_ARGUMENTS_VARIATIONAL_ETA_HPP
2 #define STAN_SERVICES_ARGUMENTS_VARIATIONAL_ETA_HPP
3 
5 
6 namespace stan {
7 
8  namespace services {
9 
11  public:
13  _name = "eta";
14  _description = "Stepsize scaling parameter for variational inference";
15  _validity = "0 < eta";
16  _default = "1.0";
17  _default_value = 1.0;
18  _constrained = true;
19  _good_value = 1.0;
20  _bad_value = -1.0;
22  }
23  bool is_valid(double value) { return value > 0; }
24  };
25  } // services
26 } // stan
27 
28 #endif
Probability, optimization and sampling library.
std::string _description
Definition: argument.hpp:84

     [ Stan Home Page ] © 2011–2016, Stan Development Team.