We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ea9d09c commit 3b61452Copy full SHA for 3b61452
apps/grpo/main.py
@@ -437,7 +437,7 @@ async def continuous_training():
437
training_step = 0
438
restart_tracer = True # Flag to control when to restart tracer
439
440
- while max_steps < 0 or training_step < max_steps:
+ while max_steps == -1 or training_step < max_steps:
441
# Restart tracer when needed (initial start or after completing a training step)
442
# Otherwise, we cannot measure time waiting for buffer
443
if restart_tracer:
0 commit comments