Skip to content

Commit

Permalink
Update logging in pipeline.py
Browse files Browse the repository at this point in the history
  • Loading branch information
mtdhuynh committed Sep 30, 2024
1 parent 36a7d57 commit 4bfb69b
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions unique/pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -1115,6 +1115,10 @@ def evaluate_uq_metrics(
self.logger.info(
f"Evaluated {i + 1} UQ methods out of {len(self.all_metrics)}{'...' if i+1<len(self.all_metrics) else '.'}"
)
elif (i + 1) >= len(self.all_metrics):
self.logger.info(
f"Evaluated {i + 1} UQ methods out of {len(self.all_metrics)}."
)

if self._bootstrap:
best_methods = self._stat_analysis_bootstrapping(eval_dfs, eval_bs_dfs)
Expand Down

0 comments on commit 4bfb69b

Please sign in to comment.