Reinforcement Learning toolbox step function

17 Ansichten (letzte 30 Tage)
Mostafa Nazmi
Mostafa Nazmi am 7 Sep. 2020
Kommentiert: Kamalova Albina am 21 Feb. 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)

Akzeptierte Antwort

Stephan
Stephan am 7 Sep. 2020
Bearbeitet: Stephan am 7 Sep. 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 Kommentare
Maha Mosalam
Maha Mosalam am 22 Nov. 2021
Hi, what about the xact role of IsDone flag it it shuld be true or false or what?
Kamalova Albina
Kamalova Albina am 21 Feb. 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

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Environments finden Sie in Help Center und File Exchange

Produkte


Version

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by