- Use Global Variables: These variables can be accessed and modified from any function. These can be used to store the rewards across episodes. This will then allow you to access and update the rewards by calling different functions.
- Callback Functions: Define callback functions that can be triggered to modify the variables during the training process.
- You can always try to define your own custom training loop. This will give you proper control over the training process and enable you to modify variables as needed.
Moving variables between episodes
4 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Danial Kazemikia
am 6 Aug. 2024
Beantwortet: Amish
am 6 Aug. 2024
To use matlab for RL, I have defined the action and observation space and the agent in a .m file, which also calls a reset function and step function also defined in .m files, and not in simulink. How can I move this variables when Matlab is still running the function train(agent,env)? I want to normalize all discounted rewards across all episodes.
0 Kommentare
Akzeptierte Antwort
Amish
am 6 Aug. 2024
Hi Danial,
I understand that you want to modify the variables when the function train(agent,env) is running in MATLAB.
Editing variables during the execution of a function like train(agent, env) in MATLAB can be challenging because the function typically runs in a blocking manner, meaning it does not return control to the MATLAB command prompt until it completes. Therefore, usually it is not possible to modify the variables when the function is executing.
However, there are some other strategies that you may try exploring:
Hope this helps!
0 Kommentare
Weitere Antworten (0)
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!