
org.deeplearning4j.gym.StepReply Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gym-java-client Show documentation
Show all versions of gym-java-client Show documentation
A Java client for Open AI's Reinforcement Learning Gym
package org.deeplearning4j.gym;
import lombok.Value;
import org.json.JSONObject;
/**
* @param type of observation
* @author rubenfiszel ([email protected]) on 7/6/16.
*
* StepReply is the container for the data returned after each step(action).
*/
@Value
public class StepReply {
T observation;
double reward;
boolean done;
JSONObject info;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy