burlap icon indicating copy to clipboard operation
burlap copied to clipboard

Actions are not published after terminal state

Open ilaplace opened this issue 7 years ago • 0 comments

Is this suppose to be like that? I thought that I need terminal state to end each episode, is it for ending the whole thing? I'm working with ros btw

for (int i = 0; i < 100; i++) {
            Episode ea = agent.runLearningEpisode(env);
            episodes.add(ea);
            System.out.println(i + ea.maxTimeStep());
            env.resetEnvironment();
        }

When i = 2, no actions are published

ilaplace avatar May 22 '17 13:05 ilaplace