Skip to content

Commit

Permalink
fix(broad-3/scoring): calling wrong tracer function to iterate
Browse files Browse the repository at this point in the history
  • Loading branch information
Caceresenzo committed Dec 10, 2024
1 parent 7bfa8af commit a06aca8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion competitions/broad-1/scoring/scoring.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def check(
if difference:
raise ParticipantVisibleError(f"Missing or extra samples: {', '.join(difference)}")

for target_name in tracer.log(target_names, "Checking target -> {value}"):
for target_name in tracer.loop(target_names, "Checking target -> {value}"):
with tracer.log(f"Filter prediction at target -> {target_name}"):
prediction_slice = prediction[prediction.index == target_name]

Expand Down

0 comments on commit a06aca8

Please sign in to comment.