We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent feb1d31 commit 317708cCopy full SHA for 317708c
train_a_generative_llm_docker.py
@@ -110,8 +110,9 @@
110
111
112
# Set up MlFlow experiment
113
-
114
-EXPERIMENT_NAME = f"{TIME.replace('_,'-')}--at-scale-llm-training--{DATASET_TO_RUN.split('/')[-1]}-" +\
+time_hyphenated = TIME.replace('_','-')
+ds_root_name = DATASET_TO_RUN.split('/')[-1]
115
+EXPERIMENT_NAME = f"{time_hyphenated}--llm-training--{ds_root_name}-" +\
116
f"ia-{PHASE_I_A_SAMPLES_TO_CREATE}-ib-{PHASE_I_B_SAMPLES_TO_CREATE}-a"
117
118
mlflow.set_tracking_uri(uri=f"http://127.0.0.1:{MLFLOW_PORT}")
0 commit comments