Janelia-Trackathon-2023 / traccuracy

Utilities for computing common accuracy metrics on cell tracking challenge solutions with ground truth
https://traccuracy.readthedocs.io
Other
25 stars 7 forks source link

Matcher dictionaries for lookup #169

Open msschwartz21 opened 1 day ago

msschwartz21 commented 1 day ago
DragaDoncila commented 1 day ago

Would we consider just storing the matched node/edge on the graph itself after matching? I guess the issue there arises where you do multiple matching, since we don't want to copy the graph, just store a reference. Still the matcher could store an attribute which is the match_key that tells you the name of the node/edge attribute to query. I ask because otherwise to dump all the metric info to file, one has to dump the graphs and the dictionaries, whereas if stored on the graph, you could just dump the graph. And the match key I guess... Lol