From 443438a08fe77b53386692de7e254173cb358ba9 Mon Sep 17 00:00:00 2001 From: Jiaming Zhang <42411674+z-jiaming@users.noreply.github.com> Date: Mon, 1 Jun 2026 01:03:07 +0800 Subject: [PATCH] correct multi-gpu appearance style aggregation --- vbench/appearance_style.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vbench/appearance_style.py b/vbench/appearance_style.py index 2c596487..e3c0d5b1 100755 --- a/vbench/appearance_style.py +++ b/vbench/appearance_style.py @@ -80,5 +80,5 @@ def compute_appearance_style(json_dir, device, submodules_list, **kwargs): all_results, video_results = appearance_style(clip_model, video_dict, device) if get_world_size() > 1: video_results = gather_list_of_dict(video_results) - all_results = sum([d['cur_sim'] for d in video_results]) / len(video_results) + all_results = sum([d['video_results'] for d in video_results]) / len(video_results) return all_results, video_results