Skip to content

Commit

Permalink
Refactor run method to compute closures and metrics after pipeline ex…
Browse files Browse the repository at this point in the history
…ecution (#47)
  • Loading branch information
jlaserna authored Dec 9, 2024
1 parent 32eb3dc commit 356d15b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/map_closures/pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,10 +105,10 @@ def __init__(

def run(self):
self._run_pipeline()
self.results.compute_closures_and_metrics()
self._save_config()
self._log_to_file()
self._log_to_console()
self.results.compute_closures_and_metrics()

return self.results

Expand Down

0 comments on commit 356d15b

Please sign in to comment.