We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e8316d5 commit 0e6397bCopy full SHA for 0e6397b
jupyter_scheduler/scheduler.py
@@ -512,7 +512,9 @@ def create_job(self, model: CreateJob) -> str:
512
input_file_path = os.path.join(self.root_dir, model.input_uri)
513
mlflow.log_artifact(input_file_path, "input")
514
515
- mlflow_run = mlflow_client.create_run(experiment_id=experiment_id, run_name=model.input_filename)
+ mlflow_run = mlflow_client.create_run(
516
+ experiment_id=experiment_id, run_name=model.input_filename
517
+ )
518
model.mlflow_run_id = mlflow_run.info.run_id
519
520
job = Job(**model.dict(exclude_none=True, exclude={"input_uri"}))
0 commit comments