Skip to content

Commit 1cc4a2c

Browse files
committed
rename table name
1 parent 291cd1f commit 1cc4a2c

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

apps/grpo/main.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -423,7 +423,9 @@ async def continuous_rollouts():
423423
for episode, advantage in zip(episodes, advantages):
424424
episode.advantage = advantage
425425
await replay_buffer.add.call_one(episode)
426-
record_episode_sample("rollout/sample", episode)
426+
record_episode_sample(
427+
"main_samples/continuous_rollouts/sample_table", episode
428+
)
427429

428430
rollout_count += 1
429431
record_metric(

src/forge/observability/metrics.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1100,7 +1100,7 @@ async def log_samples(self, samples: Dict[str, List[dict]], step: int) -> None:
11001100
table.add_data(*values)
11011101

11021102
# Log the same table object (INCREMENTAL update)
1103-
self.run.log({f"{table_name}_table": table})
1103+
self.run.log({f"{table_name}": table})
11041104
logger.info(
11051105
f"WandbBackend: Appended {len(table_rows)} rows to incremental table '{table_name}' at step {step}"
11061106
)

0 commit comments

Comments
 (0)