Skip to content

Commit

Permalink
add uuid4 to run name
Browse files Browse the repository at this point in the history
  • Loading branch information
andrii-i committed May 30, 2024
1 parent 9c3a0f9 commit 120718b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jupyter_scheduler/scheduler.py
Original file line number Diff line number Diff line change
Expand Up @@ -513,7 +513,7 @@ def create_job(self, model: CreateJob) -> str:
mlflow.log_artifact(input_file_path, "input")

mlflow_run = mlflow_client.create_run(
experiment_id=experiment_id, run_name=model.input_filename
experiment_id=experiment_id, run_name=f"{model.input_filename}-{uuid4()}"
)
model.mlflow_run_id = mlflow_run.info.run_id

Expand Down

0 comments on commit 120718b

Please sign in to comment.