Examples of Reward_observation_action_terminal


Examples of org.rlcommunity.rlglue.codec.types.Reward_observation_action_terminal

   
    public synchronized Reward_observation_action_terminal RL_step() {
        sendEmpty(Network.kRLStep, "RL_step");

        Reward_observation_action_terminal roat = new Reward_observation_action_terminal();
        roat.terminal = network.getInt();
        roat.r = network.getDouble();
        roat.o = network.getObservation();
        roat.a = network.getAction();
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.