已回答
DDPG with LSTM layer fails?
Hello, I see a couple of things wrong with the current architecture (could be more): 1) When you use the lstm layer, the input...

3 months 前 | 0

| 已接受

已回答
Could you help clarify the terminology and usage of Exploratory Policy and Exploratory Model in TD3 Reinforcement Learning
The answer above is correct with a small caveat: Even if UseExploratorypolicy is set = 0, the agent will still explore during t...

3 months 前 | 0

| 已接受

已回答
Load a pretrained neural network object in rlNeuralNetworkEnvironment
Hi Vasu, You can use a pretrained environment model with MBPO agent as follows: 1) Create a rlContinuousDeterministicTransitio...

3 months 前 | 0

已回答
Initial condition setting mPC
This should be helpful: https://www.mathworks.com/help/mpc/ref/mpcstate.html

4 months 前 | 0

已回答
is it possible to use neural network prediction model in Adaptive MPC ?
You should be able to do that, but we don't have an example to show the workflow unfortunately. You would first need to use aut...

4 months 前 | 0

| 已接受

已回答
Make Jacobian as a function in Simulink
I would first use automatic differentiation to get the A,B,C,D matrices using this command. Then you would need to take the gen...

4 months 前 | 0

已回答
RL DDPG Actions have high oscillation
Hi, The noise options you are mentioning are only used during training and are essential for exploration. If the plots you are ...

5 months 前 | 1

已回答
I want to know how to understand the sampling time ts of the agent in reinforcement learning, and how its value will affect the training and results?
Think of it as how often you need the agent to make decisions. Sometimes you need to make decisions very frequently (e.g. if you...

5 months 前 | 0

| 已接受

已回答
An Error in LSTM Network Training Using Reinforcement Learning Toolbox
I believe that both the actor and the critic need to be LSTM networks. In your case only the critic is

5 months 前 | 0

| 已接受

已回答
Linear Model Predictive Control with state feedback
The most straightforward way would be to assume that all your states are outputs, so set the C to be the identity matrix.

5 months 前 | 0

已回答
How to soften hard constraints on states in non-linear MPC?
Here is an example that shows how to do that with multi-stage MPC: https://www.mathworks.com/help/mpc/ug/use-multistage-mpc-wit...

5 months 前 | 0

已回答
RL: Continuous action space, but within a desired range(use PPO)
You can always clip the agent output on the environment side. PPO is stochastic so the upper and lower limits are not guaranteed...

5 months 前 | 0

已回答
How to add custom environment for Reinforcement learning toolbox?
Why do you need a 3d world for this problem? Unless you consider the z dimension (e.g. if you do planning for UAVs), you only ne...

5 months 前 | 0

已回答
Reinforcement Learning - PPO agent with hybrid action space
Hello, The workaround you suggested makes sense to me. Unfortunately though, bullet #3 is not currently supported. You cannot d...

5 months 前 | 0

已回答
How to make the agent automatically pause after training to a certain number of turns
You can actually automate this process without having to stop training if you are using Simulink. There is an port 'Use external...

5 months 前 | 0

已回答
Scaling in the QP formulation
I think it's likely a typo. Scaling factors should be included in Wu, Wdu and Wy along with the individual weights.

5 months 前 | 0

| 已接受

已回答
For a Non linear Model predictive control toolbox, how can I give it a mathematical model, which is a subsystem defined in Simulink?
Unfortunately, this is currently not supported but our development team is aware of this request. If you don't have an analytica...

5 months 前 | 0

| 已接受

已回答
Constraints violation in MPC design
The more constraints you are adding, the smaller the solutions space, the harder it gets for the solver to find a solution. If y...

5 months 前 | 0

| 已接受

已回答
Is there any way to graph the MPC cost function?
If you are designing the controller in MATLAB, all 'move' functions have an info argument which containts the cost value (see he...

5 months 前 | 0

已回答
The code for nmpc is not working even if i put it in same folder ?
I wasn't able to reproduce the error. Both state and output functions must be in different .m files. I did that and put everythi...

5 months 前 | 1

| 已接受

已回答
Problem with LSTM and PPO reinforcement learning
Hi, When you set up LSTM networks, the input layer needs to be the sequenceInput layer. See for example here: https://www.math...

5 months 前 | 0

已回答
QP formulation from the MPC toolbox
We are currently using the dense formula as you mentioned, but also working on adding support for sparse problems. The following...

5 months 前 | 0

| 已接受

已回答
Hierarchical Reinforcement Learning in Matlab
Hierarchical RL basically comes down to breaking a compelx problem down into smaller 'easier to train' problems, and potentially...

5 months 前 | 0

已回答
Tune PI Controller Using Reinforcement Learning
I also replied to the other thread. The fullyConnectedPILayer is a custom layer provided in the example - you can open it and se...

5 months 前 | 0

| 已接受

已回答
I want to convert the PI controller in this instance to a PID controller, so can my network be changed to something like this?
That should work - you are essentially adding one more weight to the PI layer for the D term. Potential issues may arise when yo...

5 months 前 | 1

| 已接受

已回答
Deep reinforcement learning and TD3 algorithm in the PID control
Have you seen this example?

5 months 前 | 0

| 已接受

已回答
How do I stop the reinforcement learning training and ensure agent is saved when the Episode Manager Crashes. (Stop button on episode manager not accessible)
If you use the stop button, the agent you will get will have the parameters learned to that point. You can then continue trainin...

5 months 前 | 0

已回答
How could I realize from the graph of "reinforcement learning episode manager" in DDPG or rlTD3Agent that the network is learning well?
You should be seeing the average reward curve going upwards (not monotonically) which is not the case here.

5 months 前 | 0

| 已接受

已回答
How do i define and extract the MPC constraints?
The getconstraint function is supposed to return mixed input/output constraints. One use case would be that someone creates the ...

6 months 前 | 0

已回答
RL Agent Action Limits doesn't working.
Please take a look at the DDPG algorithm and specifically step 1 here. DDPG promotes exploration by adding noise on top of the a...

6 months 前 | 0

加载更多