Skip to content

Commit 448d609

Browse files
committed
Fixed help for preprocess dataset subcommand
1 parent f3a3cd7 commit 448d609

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/guidellm/benchmark/benchmark.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -815,7 +815,10 @@ def from_stats(
815815
req.first_token_time or req.start_time
816816
for req in total_with_output_first
817817
],
818-
iter_counts=[req.output_tokens for req in total_with_output_first],
818+
iter_counts=[
819+
req.output_tokens
820+
for req in total_with_output_first
821+
],
819822
first_iter_counts=[
820823
req.prompt_tokens for req in total_with_output_first
821824
],

0 commit comments

Comments
 (0)