From 1e989829b38a7d42f3824df9be10d3875e39ea7e Mon Sep 17 00:00:00 2001 From: Sermet Pekin <96650846+SermetPekin@users.noreply.github.com> Date: Thu, 6 Nov 2025 10:25:52 +0300 Subject: [PATCH] Fix formatting in wandb initialization line --- scripts/chat_rl.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/chat_rl.py b/scripts/chat_rl.py index 9d56bcb..c9689cd 100644 --- a/scripts/chat_rl.py +++ b/scripts/chat_rl.py @@ -61,7 +61,7 @@ dtype = torch.float32 if dtype == 'float32' else torch.bfloat16 autocast_ctx = torch.amp.autocast(device_type="cuda", dtype=dtype) # wandb logging init -wandb_run = get_wandb("nanochat-rl" , run=run, master_process=master_process, user_config=user_config) +wandb_run = get_wandb("nanochat-rl", run=run, master_process=master_process, user_config=user_config) # Init model and tokenizer model, tokenizer, meta = load_model(source, device, phase="eval")