Reinforcement Learning toolbox step function

13 visualizaciones (últimos 30 días)
Mostafa Nazmi
Mostafa Nazmi el 7 de Sept. de 2020
Comentada: Kamalova Albina el 21 de Feb. de 2022
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)

Respuesta aceptada

Stephan
Stephan el 7 de Sept. de 2020
Editada: Stephan el 7 de Sept. de 2020
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 comentarios
Maha Mosalam
Maha Mosalam el 22 de Nov. de 2021
Hi, what about the xact role of IsDone flag it it shuld be true or false or what?
Kamalova Albina
Kamalova Albina el 21 de Feb. de 2022
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

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Environments en Help Center y File Exchange.

Productos


Versión

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by