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 287d828 commit 1211ecdCopy full SHA for 1211ecd
.gitignore
@@ -197,6 +197,5 @@ wandb/
197
assets/wheels/vllm*.whl
198
199
# DCP artifacts
200
-model_state_dict/
201
forge_dcp_tmp/
202
demo_top_down.md
apps/grpo/main.py
@@ -455,9 +455,9 @@ async def continuous_training():
455
await policy.update_weights.fanout(training_step)
456
t.step("update_weights")
457
458
- # if training_step >= 2:
459
- # await drop_weights(training_step - 1)
460
- # t.step("drop_weights")
+ if training_step >= 2:
+ await drop_weights(training_step - 1)
+ t.step("drop_weights")
461
462
t.stop()
463
restart_tracer = True
0 commit comments