Skip to content

Commit 317708c

Browse files
author
David Thrower
committed
Syntax.
1 parent feb1d31 commit 317708c

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
@@ -110,8 +110,9 @@
110110

111111

112112
# Set up MlFlow experiment
113-
114-
EXPERIMENT_NAME = f"{TIME.replace('_,'-')}--at-scale-llm-training--{DATASET_TO_RUN.split('/')[-1]}-" +\
113+
time_hyphenated = TIME.replace('_','-')
114+
ds_root_name = DATASET_TO_RUN.split('/')[-1]
115+
EXPERIMENT_NAME = f"{time_hyphenated}--llm-training--{ds_root_name}-" +\
115116
f"ia-{PHASE_I_A_SAMPLES_TO_CREATE}-ib-{PHASE_I_B_SAMPLES_TO_CREATE}-a"
116117

117118
mlflow.set_tracking_uri(uri=f"http://127.0.0.1:{MLFLOW_PORT}")

0 commit comments

Comments
 (0)