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
Hi @uakfdotb,
Below I quote what is reported in the paper.
"On intermediate frames, we apply the Hungarian method on M(0,k) to match detections in Dk with tracks, updating each track with the matched detection (if any)."
I would ask if get_recur_sel() function, together with tf.gather(), represents the Hungarian algorithm implementation.
Yes, this is the part that matches detections with track prefixes during training. It is not the Hungarian algorithm but an approximation in this implementation since doing the bipartite matching is more complex and unnecessary.
Hi @uakfdotb,
Below I quote what is reported in the paper.
"On intermediate frames, we apply the Hungarian method on M(0,k) to match detections in Dk with tracks, updating each track with the matched detection (if any)."
I would ask if get_recur_sel() function, together with tf.gather(), represents the Hungarian algorithm implementation.
uns20/model.py
Lines 366 to 381 in 510833a
uns20/model.py
Lines 456 to 466 in 510833a
The text was updated successfully, but these errors were encountered: