RLPark 1.0.0
Reinforcement Learning Framework in Java

AgentFactory.java

Go to the documentation of this file.
00001 package rlpark.plugin.rltoys.experiments.parametersweep.reinforcementlearning;
00002 
00003 import java.io.Serializable;
00004 
00005 import rlpark.plugin.rltoys.agents.representations.RepresentationFactory;
00006 import rlpark.plugin.rltoys.envio.rl.RLAgent;
00007 import rlpark.plugin.rltoys.experiments.parametersweep.parameters.Parameters;
00008 import rlpark.plugin.rltoys.problems.RLProblem;
00009 import zephyr.plugin.core.api.labels.Labeled;
00010 
00011 public interface AgentFactory extends Labeled, Serializable {
00012   public RLAgent createAgent(long seed, RLProblem problem, Parameters parameters, RepresentationFactory representationFactory);
00013 }
 All Classes Namespaces Files Functions Variables Enumerations
Zephyr
RLPark