We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Using Simulink for simulation produces di={ref, u, y} $i \in [1..m]$ where $m$ is the number of simulation traces
D_ref=[ref1, ref2, ..., refm] similarly D_u, D_y are defined. Then, D={D_ref, D_u, D_y}.
However, the input of the NN at step k might include previous values of ref, u, or y, e.g. ref(k), ref(k-1).
Concatenating these values requires making the previous values 0. However, this is only done for the first trace and not for i=[2,..m]
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Using Simulink for simulation produces di={ref, u, y}
$i \in [1..m]$ where $m$ is the number of simulation traces
D_ref=[ref1, ref2, ..., refm]
similarly D_u, D_y are defined. Then, D={D_ref, D_u, D_y}.
However, the input of the NN at step k might include previous values of ref, u, or y, e.g. ref(k), ref(k-1).
Concatenating these values requires making the previous values 0. However, this is only done for the first trace and not for i=[2,..m]
The text was updated successfully, but these errors were encountered: