From 9604f5995cc628619f0e4fd913453b4d7d61db3f Mon Sep 17 00:00:00 2001 From: "Yue (R) Zhao" Date: Mon, 13 Jan 2025 17:41:14 -0800 Subject: [PATCH] update eval to ms3 baseline Summary: Update the eval to the moviegen ms3 model and also update the expired evaluation set. Reviewed By: jperezrua Differential Revision: D67349051 Privacy Context Container: L1189911 fbshipit-source-id: cfb48cb36c372fb499c524339edce264c74c007b --- detectron2/evaluation/evaluator.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/detectron2/evaluation/evaluator.py b/detectron2/evaluation/evaluator.py index 9c0e33e026..993c5ed4f4 100644 --- a/detectron2/evaluation/evaluator.py +++ b/detectron2/evaluation/evaluator.py @@ -206,7 +206,9 @@ def inference_on_dataset( total_compute_time_str = str(datetime.timedelta(seconds=int(total_compute_time))) logger.info( "Total inference pure compute time: {} ({:.6f} s / iter per device, on {} devices)".format( - total_compute_time_str, total_compute_time / (total - num_warmup), num_devices + total_compute_time_str, + total_compute_time / (total - num_warmup), + num_devices, ) )