RLPark 1.0.0
Reinforcement Learning Framework in Java

LinearLearner.java

Go to the documentation of this file.
00001 package rlpark.plugin.rltoys.algorithms;
00002 
00003 import rlpark.plugin.rltoys.algorithms.functions.ParameterizedFunction;
00004 
00005 public interface LinearLearner extends ParameterizedFunction {
00006   void resetWeight(int index);
00007 
00008   double error();
00009 }
 All Classes Namespaces Files Functions Variables Enumerations
Zephyr
RLPark