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
Stone Soup v1.4, smoother/kalman.py line 202 smoothed_track = copy.deepcopy(track, {id(track.states): smoothed_states})
Creates a deep copy, with two issues:
Cannot deal with unpickable objects (e.g. metadata contains unpickable objects used in Detection class to keep track of detections and the observations that generated the detection for subsequent processing...)
Looses "pass by reference" functionality.
The first can be worked around, the second aswell but seems a bit more inconvenient and prone to raise errors in postprocessing activities for instance
The text was updated successfully, but these errors were encountered:
Stone Soup v1.4, smoother/kalman.py line 202
smoothed_track = copy.deepcopy(track, {id(track.states): smoothed_states})
Creates a deep copy, with two issues:
The first can be worked around, the second aswell but seems a bit more inconvenient and prone to raise errors in postprocessing activities for instance
The text was updated successfully, but these errors were encountered: