We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9a4f268 commit 77b99e3Copy full SHA for 77b99e3
train_a_generative_llm_docker.py
@@ -87,8 +87,9 @@
87
if MLFLOW_PORT != 0:
88
mlflow_artifacts_path = f"{ARTIFACTS_FOLDER}/mlflow-artifacts-{meta_trial_number}"
89
Path(mlflow_artifacts_path).mkdir(parents=True, exist_ok=True)
90
- mlflow_db_path= f"{ARTIFACTS_FOLDER}/mlruns-{meta_trial_number}.db"
91
- Path(mlflow_db_path).mkdir(parents=True, exist_ok=True)
+ mlflow_db_dir= f"{ARTIFACTS_FOLDER}/mlruns-{meta_trial_number}"
+ Path(mlflow_db_dir).mkdir(parents=True, exist_ok=True)
92
+ mlflow_db_path = f"{mlflow_db_dir}/mlflow-exp-{meta_trial_number}.db"
93
94
cmd = "".join([
95
"mlflow server ",
0 commit comments