Skip to content

Commit

Permalink
Fixed pylint warning
Browse files Browse the repository at this point in the history
Signed-off-by: Martin <[email protected]>
  • Loading branch information
bmmtstb committed Jan 17, 2024
1 parent 7a125aa commit 01a94c7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/eval_posetrack21.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@
from dgs.utils.files import to_abspath

if __name__ == "__main__":
eval_type = "tracking"
EVAL_TYPE = "tracking"
evaluator = pt21_eval_api.get_api(
trackers_folder=to_abspath("./data/PoseTrack21/...predictions..."),
gt_folder=to_abspath("./data/PoseTrack21/posetrack_data/annotations/val/"),
eval_type=eval_type,
eval_type=EVAL_TYPE,
num_parallel_cores=8,
use_parallel=True,
)
Expand Down

0 comments on commit 01a94c7

Please sign in to comment.