Skip to content

Commit 77b99e3

Browse files
author
David Thrower
committed
Fix sqlite file name.
1 parent 9a4f268 commit 77b99e3

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

train_a_generative_llm_docker.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,8 +87,9 @@
8787
if MLFLOW_PORT != 0:
8888
mlflow_artifacts_path = f"{ARTIFACTS_FOLDER}/mlflow-artifacts-{meta_trial_number}"
8989
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)
90+
mlflow_db_dir= f"{ARTIFACTS_FOLDER}/mlruns-{meta_trial_number}"
91+
Path(mlflow_db_dir).mkdir(parents=True, exist_ok=True)
92+
mlflow_db_path = f"{mlflow_db_dir}/mlflow-exp-{meta_trial_number}.db"
9293

9394
cmd = "".join([
9495
"mlflow server ",

0 commit comments

Comments
 (0)