Commit 9fc1cc21 authored by Wes Brown's avatar Wes Brown

Fix passing step to wandb.

parent b4bf88c8
......@@ -384,7 +384,8 @@ for input_ids, labels in t:
if curr_step % train_config["eval_every"] == 0 and curr_step != 0:
for prompt in prompts:
sampled = sample(prompt, 500, 3, hypernetwork=hypernetwork)
sampled = sample(prompt, 500, 3, hypernetwork=hypernetwork,
step=step)
print(f"PROMPT:\n{prompt}")
report_console(sampled)
sample_data = sample_data + sampled
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment