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.
1 parent 163f463 commit 4180022Copy full SHA for 4180022
parea/experiment/experiment.py
@@ -34,7 +34,7 @@ def calculate_avg_std_for_experiment(experiment_stats: ExperimentStatsSchema) ->
34
for attr in STAT_ATTRS:
35
value = getattr(trace_stat, attr, None)
36
if value is not None:
37
- accumulators[attr] += value # f"{value:.5f}" if attr == "cost" else value
+ accumulators[attr] += value
38
counts[attr] += 1
39
40
for score in trace_stat.scores:
0 commit comments