For a control system of 4 states and 2 control inputs... #3
-
Hi Simon, I am trying to implement it to a four-state two-input continuous-time autonomous system. May I know what modifications should be made? Thanks a lot in advance. Caesar |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
Hi,
For specific information about tuning the parameters, specific knowledge about the system is needed. You can email me with details if you want more specific information. Let me know if it worked. Thank you. |
Beta Was this translation helpful? Give feedback.
Hi,
Look at the list of limitations of the method and check that it will still work for your system.
Specifically, if your system doesn't have too much noise and doesn't have a delay between actions and their effect on observations
You must either create a gym environment like here: https://www.novatec-gmbh.de/en/blog/creating-a-gym-environment/,
or if you prefer, create a python object with the same attributes and functions as a gym env, and call it instead in the main script.
Copy main_parameters_pendulum.json and rename it main_parameters_"myenv".json. Set
- env_to_control to the name of your gym env (if you use a gym env)
- render_env to false if you did not provide the render m…