-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
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
Improve documentation of IncludeWorkflows #40
Conversation
<Property Name="Fps" Description="The frames per second of the observations." Category="ModelParams" /> | ||
<Property Name="Pos_x0" Description="The initial x position." Category="ModelParams" /> | ||
<Property Name="Pos_y0" Description="The initial y position." Category="ModelParams" /> | ||
<Property Name="Vel_x0" Description="The initial x velocity." Category="ModelParams" /> | ||
<Property Name="Vel_y0" Description="The initial y velocity." Category="ModelParams" /> | ||
<Property Name="Acc_x0" Description="The initial x acceleration." Category="ModelParams" /> | ||
<Property Name="Acc_y0" Description="The initial y acceleration." Category="ModelParams" /> | ||
<Property Name="Sigma_a" Description="A scalar value representing the measurement noise." Category="ModelParams" /> | ||
<Property Name="Sigma_x" Description="A scalar value representing the prediction noise along the x axis." Category="ModelParams" /> | ||
<Property Name="Sigma_y" Description="A scalar value representing the prediction noise along the y axis." Category="ModelParams" /> | ||
<Property Name="Sqrt_diag_V0_value" Description="The initial value of the diagonal of the state covariance matrix." Category="ModelParams" /> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In general in Bonsai / C# we would use Pascal casing rather than snake case, but no need to change anything now, this is just a general comment for us to think about regarding casing of properties coming from Python.
@@ -51,10 +51,10 @@ public class KFModelParameters | |||
private string fpsString; | |||
|
|||
/// <summary> | |||
/// x position at time 0 | |||
/// The initial x position. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Depending on casing we would change this to X
but see comment above, no need to change anything now.
src/Bonsai.ML.LinearDynamicalSystems/Learning/CheckOptimizationFinished.bonsai
Outdated
Show resolved
Hide resolved
src/Bonsai.ML.LinearDynamicalSystems/Learning/RunOptimizationAsync.bonsai
Outdated
Show resolved
Hide resolved
4f7f5c3
to
dcf81d2
Compare
dcf81d2
to
614de1c
Compare
614de1c
to
712aa74
Compare
712aa74
to
5266131
Compare
Summary
This PR updates the main bonsai environment with the latest Bonsai.ML packages and adds documentation to IncludeWorkflows within Bonsai.ML packages. Fixes #32