Skip to content

Commit

Permalink
skip clearml fix
Browse files Browse the repository at this point in the history
  • Loading branch information
lmeribal committed Nov 15, 2024
1 parent 94e1594 commit c0c956d
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions turbo_alignment/common/logging/clearml.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,7 @@

def create_clearml_task(parameters: ClearMLSettings, config: dict[str, Any] | None = None) -> Task:
clearml_task = Task.init(
task_name=parameters.task_name,
project_name=parameters.project_name,
continue_last_task=True,
output_uri=False,
task_name=parameters.task_name, project_name=parameters.project_name, continue_last_task=True, auto_connect_frameworks=False # FIXME?
)

clearml_task.connect_configuration(config, name='HyperParameters')
Expand Down

0 comments on commit c0c956d

Please sign in to comment.