Skip to content

Commit

Permalink
Compute 50th and 75th percentile.
Browse files Browse the repository at this point in the history
  • Loading branch information
jlewi committed Oct 16, 2024
1 parent 2261614 commit 6f5dca2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/pkg/eval/evaluator.go
Original file line number Diff line number Diff line change
Expand Up @@ -689,7 +689,7 @@ func (e *Evaluator) buildExperimentReport(ctx context.Context, name string, mana
}
}

percentiles, err := computePercentilesOfInts(generateTimes, []float64{.9, .95})
percentiles, err := computePercentilesOfInts(generateTimes, []float64{.5, .75, .9, .95})
if err != nil {
return r, errors.Wrapf(err, "Failed to compute percentiles")
}
Expand Down

0 comments on commit 6f5dca2

Please sign in to comment.