arangesh / TrackMPNN

8 stars 1 forks source link

graph viz ability #15

Open mez opened 5 years ago

mez commented 5 years ago

create the ability to view the graph as it is updating.

  1. must be a flag to viz graph
  2. graph should be displayed from left to right (Time increasing)
  3. edges should be colored (RED or GREEN) based on incorrect or correct associations.
arangesh commented 5 years ago

You could start out by just visualizing the performance on entire sequences in the validation set. All you would need is y and y_out, both of size (N, 2) where each row is [frame_no, track_id]. The first array is the ground truth, and the second array is the model prediction.

Also, a track_id = -1 implies a false positive.