All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.deeplearning4j.gym.StepReply Maven / Gradle / Ivy

There is a newer version: 1.0.0-beta2
Show newest version
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