RLPark 1.0.0
Reinforcement Learning Framework in Java

OffPolicyProblemFactory.java

Go to the documentation of this file.
00001 package rlpark.plugin.rltoys.experiments.parametersweep.reinforcementlearning;
00002 
00003 import java.util.Random;
00004 
00005 import rlpark.plugin.rltoys.problems.RLProblem;
00006 
00007 public interface OffPolicyProblemFactory extends ProblemFactory {
00008   RLProblem createEvaluationEnvironment(Random random);
00009 }
 All Classes Namespaces Files Functions Variables Enumerations
Zephyr
RLPark