RLPark 1.0.0
Reinforcement Learning Framework in Java

PredictionLearnerFactory.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.algorithms.functions.Predictor;
00006 import rlpark.plugin.rltoys.experiments.parametersweep.parameters.Parameters;
00007 import rlpark.plugin.rltoys.problems.PredictionProblem;
00008 import zephyr.plugin.core.api.labels.Labeled;
00009 
00010 public interface PredictionLearnerFactory extends Labeled, Serializable {
00011   Predictor createLearner(int counter, PredictionProblem problem, Parameters parameters);
00012 }
 All Classes Namespaces Files Functions Variables Enumerations
Zephyr
RLPark