Reinforcement Learning toolbox step function

20 次查看(过去 30 天)
Greetings everyone, I hope you're having a good time. In reinforcement learning toolbox there's a functin named "step(env, Action)", I wanted to know what is the role of the input "Action" in this function?
[Observation, Reward, IsDone, LoggedSignals] = step(env, Action)

采纳的回答

Stephan
Stephan 2020-9-7
编辑:Stephan 2020-9-7
The action the agent has choosen in the last step, usually has an impact on the environment. To let the step function know what action was choosen the step before, you have to refer the last action to the next call of the step function, which then - based on this informations calculates the next observation, the reward and the iSDone flag.
See this example:
In the example given in the link above the action is a directed force that is applied to the system in the following step to calculate the new observations from the current step.
Building on that the step function can calculate the reward and if the IsDone value is true. Using these informations the agent gets a new information from the environment, which is the basis for the choice of the next action.
  3 个评论
Maha Mosalam
Maha Mosalam 2021-11-22
Hi, what about the xact role of IsDone flag it it shuld be true or false or what?
Kamalova Albina
Kamalova Albina 2022-2-21
IsDone flag means the episode is finished or not. It should have a condition logic. For example, let's say you are hungry and you decide to eat something. In step function, you are continuously eating while do the actions to choose fry potato or tomato (maybe). How to know you are done and full already?! IsDone is this flag for showing you should stop this eating episode

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Environments 的更多信息

产品


版本

R2019b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by