Skip to content

Commit 160a754

Browse files
trvachovclaude
andcommitted
Fix remaining f-string log call in OG2 train_fsdp2.py
Missed one logger.info(f"...") call during the earlier style pass. Convert to %-formatting for consistency with the other recipes' lazy log evaluation pattern. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> Signed-off-by: Timur Rvachov <trvachov@nvidia.com>
1 parent 2b8763e commit 160a754

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

bionemo-recipes/recipes/opengenome2_mixtral_native_te/train_fsdp2.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -351,7 +351,7 @@ def main(args: DictConfig) -> float | None:
351351
if val_enabled:
352352
val_data_path = getattr(val_config, "data_path", None)
353353
if val_data_path:
354-
logger.info(f"Setting up validation dataloader from {val_data_path}")
354+
logger.info("Setting up validation dataloader from %s", val_data_path)
355355
val_dataset_kwargs = OmegaConf.to_container(args.dataset, resolve=True)
356356
val_dataset_kwargs["load_dataset_kwargs"] = {
357357
"path": "json",

0 commit comments

Comments
 (0)