We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4bda8cf + 332ef08 commit 4b857f1Copy full SHA for 4b857f1
src/guidellm/benchmark/aggregator.py
@@ -637,8 +637,8 @@ def compile(self) -> GenerativeBenchmark:
637
def _calculate_error_rate(self) -> float:
638
total_successful = self.requests_stats.totals.successful.total
639
total_errored = self.requests_stats.totals.errored.total
640
- total_sent = total_errored + total_successful
641
- return total_errored / total_sent
+ total_finished = total_errored + total_successful
+ return total_errored / total_finished
642
643
def _compile_results(
644
self,
0 commit comments