
org.deeplearning4j.rl4j.space.ObservationSpace 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.rl4j.space;
import org.nd4j.linalg.api.ndarray.INDArray;
/**
* @author rubenfiszel ([email protected]) on 8/11/16.
* An observation space contains the basic informations about the state space
*/
public interface ObservationSpace {
String getName();
int[] getShape();
INDArray getLow();
INDArray getHigh();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy