RLPark 1.0.0
Reinforcement Learning Framework in Java

PredictionProblemFactory.java

Go to the documentation of this file.
00001 package rlpark.plugin.rltoys.experiments.parametersweep.prediction;
00002 
00003 import java.io.Serializable;
00004 
00005 import rlpark.plugin.rltoys.experiments.parametersweep.parameters.Parameters;
00006 import rlpark.plugin.rltoys.problems.PredictionProblem;
00007 import zephyr.plugin.core.api.labels.Labeled;
00008 
00009 public interface PredictionProblemFactory extends Labeled, Serializable {
00010   PredictionProblem createProblem(int counter, Parameters parameters);
00011 }
 All Classes Namespaces Files Functions Variables Enumerations
Zephyr
RLPark