java-reinforcement-learning icon indicating copy to clipboard operation
java-reinforcement-learning copied to clipboard

Can anybody tell me "world" in code and Readme?

Open JayVae opened this issue 5 years ago • 3 comments

Can anybody tell me "world" in code and Readme? I cannot find where is "world"

` int actionId = agent.selectAction().getIndex(); System.out.println("Agent does action-" + actionId);

        int newStateId = world.update(agent, actionId);
        double reward = world.reward(agent);`

Thanks a lot!

JayVae avatar Mar 17 '19 13:03 JayVae

World isn't defined.

Because it is up to you to define it

World means the environment

raimannma avatar Mar 17 '19 13:03 raimannma

World isn't defined.

Because it is up to you to define it

World means the environment

Thanks a lot!

JayVae avatar Mar 18 '19 02:03 JayVae

Can you show us a sample of how to define the "world"? thanks

Dtuzzy avatar Aug 31 '20 15:08 Dtuzzy