Skip to content

Commit 9a4f268

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

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

train_a_generative_llm_docker.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@
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}"
90+
mlflow_db_path= f"{ARTIFACTS_FOLDER}/mlruns-{meta_trial_number}.db"
9191
Path(mlflow_db_path).mkdir(parents=True, exist_ok=True)
9292

9393
cmd = "".join([

0 commit comments

Comments
 (0)