RLPark 1.0.0
Reinforcement Learning Framework in Java

OnPolicyTD.java

Go to the documentation of this file.
00001 package rlpark.plugin.rltoys.algorithms.predictions.td;
00002 
00003 
00004 import rlpark.plugin.rltoys.algorithms.LinearLearner;
00005 import rlpark.plugin.rltoys.algorithms.functions.Predictor;
00006 import rlpark.plugin.rltoys.math.vector.RealVector;
00007 
00008 public interface OnPolicyTD extends Predictor, LinearLearner {
00009   double update(RealVector x_t, RealVector x_tp1, double r_tp1);
00010 
00011   double prediction();
00012 }
 All Classes Namespaces Files Functions Variables Enumerations
Zephyr
RLPark