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

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

There is a newer version: 1.0.0-beta2
Show newest version
package org.deeplearning4j.rl4j.space;

/**
 * @param  the type of Action
 * @author rubenfiszel ([email protected]) on 7/8/16.
 *         

* Should contain contextual information about the Action space, which is the space of all the actions that could be available. * Also must know how to return a randomly uniformly sampled action. */ public interface ActionSpace { /** * @return A randomly uniformly sampled action, */ A randomAction(); Object encode(A action); int getSize(); A noOp(); }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy