AIToolbox
A library that offers tools for AI problem solving.
|
Go to the documentation of this file. 1 #ifndef AI_TOOLBOX_MDP_HYSTERETIC_QLEARNING_HEADER_FILE
2 #define AI_TOOLBOX_MDP_HYSTERETIC_QLEARNING_HEADER_FILE
68 HystereticQLearning(
size_t S,
size_t A,
double discount = 1.0,
double alpha = 0.1,
double beta = 0.01);
91 template <IsGenerativeModel M>
171 void stepUpdateQ(
size_t s,
size_t a,
size_t s1,
double rew);
199 double alpha_, beta_;
205 template <IsGenerativeModel M>