RLPark 1.0.0
Reinforcement Learning Framework in Java
|
00001 package rlpark.plugin.rltoys.agents.representations; 00002 00003 import rlpark.plugin.rltoys.algorithms.functions.stateactions.StateToStateAction; 00004 import rlpark.plugin.rltoys.problems.RLProblem; 00005 00006 public interface RepresentationFactory extends ProjectorFactory { 00007 StateToStateAction createToStateAction(long seed, RLProblem problem, double vectorNorm, int vectorSize); 00008 }