-
Notifications
You must be signed in to change notification settings - Fork 140
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
GaussianMixtureInitiator not working with MFAHypothesiser #896
Comments
It seems that the MultiMeasurementInitiator does not work with the MultiTargetMixtureTracker. I used this instead and it seems to be running without the error.
Is this expected/desired behavior? |
Yeah, this is unfortunately expected behaviour, but not desirable. There is an issue with the multi-measurement initiator which doesn't work well with different mixture types, due to logic based on hard-assignment. A work around is in the initiator, use a hard-assignment data associator with non-MFA hypothesiser (e.g. A fix would be add mixture/MFA compatible versions of a multi-measurement initiator. Another more general option would be to make a multi-measurement initiator, which can use any "Tracker" style class, which would offer some flexibility, to then use mixture trackers in it. There is a few complications in implementing this however (possibly blocking iteration call for example, so a thread may be required). Also, you wont want to use the |
Hi both, I saw this open issue because I am, as well, in the middle of creating an example for MHT using MFA components and Stone soup trackers I got stuck in the same problems. Wrapping up: MFA data associator, as it is now, it can't be used using in the So the only option available is to loop over the MFA data associations as shown in the example and instantiate the tracks by hand. Is this correct? |
I am trying to use the MHT with the new initializer added in #873. However, when I try to do so I get the following error
Here is the relevant part of the code. Assume I have created some measurements and timestamps beforehand (I use real data which I cannot post here).
The text was updated successfully, but these errors were encountered: