-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
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
[ENH] Second test parameter set for Kalman Filter #6095
Conversation
I tried to fix the dimension problem. Now |
@Xinyu-Wu-0000 - well spotted! Originally, I was actually thinking, to make things convenient for you, we were going to merge this first, and then I'll work "around you", i.e., take care of all the unpleasant merge conflicts. However, @mbalatsko did respond to the query, and said he was going to take care of the python 3.11/3.12 patch in |
Of course. Could you kindly explain quickly:
|
@fkiraly Thank you for your explanation!
The
If commenting out the two parameters, the
|
Ah, thanks for the explanation, I think I understand now. I am trying to rephrase to check my understanding, please let me know if this is correct or not. The issue is coming from two variables in the new parameter set, The problem is that these parameters need to be of shape compliant with the data seen by the transformer, but in the test parameter set you have to pick one value, while the Have I understood this right? In this case, I would say:
|
Thank you for your help, I haven't noticed the |
great, I'm restarting the tests then |
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.
Thanks for the added tests and the explanation!
Toward #3429
Added the second test parameter set for KalmanFilterTransformerFP and KalmanFilterTransformerPK under
sktime/transformations/series/kalman_filter.py
The physical meaning of the second test parameter set can be found in wikipedia example. Basicly, it is a one dimension position estimation with process noise and measurement noise. The state of the filter is [position, velocity] and$\Delta t=0.1$ .