RLPark 1.0.0
Reinforcement Learning Framework in Java
|
00001 package rlpark.plugin.rltoys.problems; 00002 00003 import rlpark.plugin.rltoys.envio.actions.Action; 00004 import rlpark.plugin.rltoys.envio.observations.Legend; 00005 import rlpark.plugin.rltoys.envio.rl.TRStep; 00006 00007 public interface RLProblem { 00008 TRStep initialize(); 00009 00010 TRStep step(Action action); 00011 00012 TRStep forceEndEpisode(); 00013 00014 TRStep lastStep(); 00015 00016 Legend legend(); 00017 }