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

org.deeplearning4j.rl4j.space.ObservationSpace Maven / Gradle / Ivy

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