You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
JointHypothesis Property "hypotheses" is currently defined as a Hypothesis, when in reality it is dictionary with the form Track:Hypothesis. It is defined this way because then Hypothesis would import Track, and Track imports Update, and Update imports Hypothesis, which is a circular import. This occurs because the function "get_measurement_prediction()" somehow ended up in the Updater rather than the Predictor. When the function is correctly moved back to the Predictor, this issue can be resolved.
The text was updated successfully, but these errors were encountered:
After discussion with the team, keeping "get_measurement_prediction()" in the Updater is sufficiently important that we will just work around this issue.
JointHypothesis Property "hypotheses" is currently defined as a Hypothesis, when in reality it is dictionary with the form Track:Hypothesis. It is defined this way because then Hypothesis would import Track, and Track imports Update, and Update imports Hypothesis, which is a circular import. This occurs because the function "get_measurement_prediction()" somehow ended up in the Updater rather than the Predictor. When the function is correctly moved back to the Predictor, this issue can be resolved.
The text was updated successfully, but these errors were encountered: