Skip to content

Commit

Permalink
small grammar fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Draga Doncila committed Dec 15, 2023
1 parent 6e84746 commit 428c50d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ The `traccuracy` library has three main components: loaders, matchers, and metri
Loaders load tracking graphs from other formats, such as the CTC format, into a [TrackingGraph](https://traccuracy.readthedocs.io/en/latest/autoapi/traccuracy/index.html#traccuracy.TrackingGraph) object.
A TrackingGraph is a spatiotemporal graph.
Nodes represent a single cell in a given time point, and are annotated with a time and a location.
Edges point forward in time from a node representing a cell in time point `t` to the same cell or its daughter in frames `t+1` (or beyond, to represent gap closing).
Edges point forward in time from a node representing a cell in time point `t` to the same cell or its daughter in frame `t+1` (or beyond, to represent gap-closing).
To load TrackingGraphs from a custom format, you will likely need to implement a loader: see
documentation [here](https://traccuracy.readthedocs.io/en/latest/autoapi/traccuracy/loaders/index.html#module-traccuracy.loaders) for more information.

Expand Down

1 comment on commit 428c50d

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Benchmark Mean (s) BASE ad3f68d Mean (s) HEAD 428c50d Percent Change
test_load_gt_data 1.28065 1.27425 -0.5
test_load_pred_data 1.15569 1.17441 1.62
test_ctc_checks 0.41545 0.4092 -1.5
test_ctc_matched 2.19752 2.23545 1.73
test_ctc_metrics 0.52157 0.53395 2.37
test_ctc_div_metrics 0.28202 0.28443 0.85
test_iou_matched 9.41798 9.40708 -0.12
test_iou_div_metrics 0.27595 0.2689 -2.55

Please sign in to comment.