Skip to content

Commit 4180022

Browse files
committed
don't log parent early
1 parent 163f463 commit 4180022

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

parea/experiment/experiment.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ def calculate_avg_std_for_experiment(experiment_stats: ExperimentStatsSchema) ->
3434
for attr in STAT_ATTRS:
3535
value = getattr(trace_stat, attr, None)
3636
if value is not None:
37-
accumulators[attr] += value # f"{value:.5f}" if attr == "cost" else value
37+
accumulators[attr] += value
3838
counts[attr] += 1
3939

4040
for score in trace_stat.scores:

0 commit comments

Comments
 (0)