RLPark 1.0.0
Reinforcement Learning Framework in Java

LearningAlgorithm.java

Go to the documentation of this file.
00001 package rlpark.plugin.rltoys.algorithms.predictions.supervised;
00002 
00003 import rlpark.plugin.rltoys.algorithms.functions.Predictor;
00004 import rlpark.plugin.rltoys.math.vector.RealVector;
00005 
00006 public interface LearningAlgorithm extends Predictor {
00007   double learn(RealVector x_t, double y_tp1);
00008 }
 All Classes Namespaces Files Functions Variables Enumerations
Zephyr
RLPark