Skip to content

Commit b79cc52

Browse files
committed
deploy: a56bea0
1 parent 3a82b1c commit b79cc52

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+102
-100
lines changed

.doctrees/environment.pickle

0 Bytes
Binary file not shown.
186 Bytes
Binary file not shown.

_examples_synced/fully_async/README.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
<link rel="prev" title="Search-R1 lite" href="../search-r1/README.html" />
5555
<meta name="viewport" content="width=device-width, initial-scale=1"/>
5656
<meta name="docsearch:language" content="en"/>
57-
<meta name="docbuild:last-update" content="Sep 08, 2025"/>
57+
<meta name="docbuild:last-update" content="Sep 09, 2025"/>
5858
</head>
5959

6060

@@ -592,7 +592,7 @@ <h2>Config Differences (2 Key Points)<a class="headerlink" href="#config-differe
592592

593593
<div class="footer-item">
594594
<p class="last-updated">
595-
Last updated on Sep 08, 2025.
595+
Last updated on Sep 09, 2025.
596596
<br/>
597597
</p>
598598
</div>

_examples_synced/multi_agent/README.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
<link rel="prev" title="Retool: from SFT to RL" href="../retool/README.html" />
5555
<meta name="viewport" content="width=device-width, initial-scale=1"/>
5656
<meta name="docsearch:language" content="en"/>
57-
<meta name="docbuild:last-update" content="Sep 08, 2025"/>
57+
<meta name="docbuild:last-update" content="Sep 09, 2025"/>
5858
</head>
5959

6060

@@ -580,7 +580,7 @@ <h2>New Arguments<a class="headerlink" href="#new-arguments" title="Link to this
580580

581581
<div class="footer-item">
582582
<p class="last-updated">
583-
Last updated on Sep 08, 2025.
583+
Last updated on Sep 09, 2025.
584584
<br/>
585585
</p>
586586
</div>

_examples_synced/retool/README.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
<link rel="prev" title="Fully Asynchronous Rollout Example" href="../fully_async/README.html" />
5555
<meta name="viewport" content="width=device-width, initial-scale=1"/>
5656
<meta name="docsearch:language" content="en"/>
57-
<meta name="docbuild:last-update" content="Sep 08, 2025"/>
57+
<meta name="docbuild:last-update" content="Sep 09, 2025"/>
5858
</head>
5959

6060

@@ -639,7 +639,7 @@ <h2>Safety Features<a class="headerlink" href="#safety-features" title="Link to
639639

640640
<div class="footer-item">
641641
<p class="last-updated">
642-
Last updated on Sep 08, 2025.
642+
Last updated on Sep 09, 2025.
643643
<br/>
644644
</p>
645645
</div>

_examples_synced/search-r1/README.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
<link rel="prev" title="SFT Qwen3-4B-Base" href="../../examples/qwen3-4b-base-openhermes.html" />
5555
<meta name="viewport" content="width=device-width, initial-scale=1"/>
5656
<meta name="docsearch:language" content="en"/>
57-
<meta name="docbuild:last-update" content="Sep 08, 2025"/>
57+
<meta name="docbuild:last-update" content="Sep 09, 2025"/>
5858
</head>
5959

6060

@@ -594,7 +594,7 @@ <h2>Code Structure<a class="headerlink" href="#code-structure" title="Link to th
594594

595595
<div class="footer-item">
596596
<p class="last-updated">
597-
Last updated on Sep 08, 2025.
597+
Last updated on Sep 09, 2025.
598598
<br/>
599599
</p>
600600
</div>

_sources/get_started/quick_start.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,8 @@ CKPT_ARGS=(
130130
--hf-checkpoint /root/GLM-Z1-9B-0414
131131
# Reference Model's Megatron format checkpoint
132132
--ref-load /root/GLM-Z1-9B-0414_torch_dist
133-
# Actor model loading path. If empty, load from --ref-load
133+
# Actor model loading path. Should typically match --save for checkpoint resumption
134+
# If empty or doesn't contain a valid checkpoint, loads from --ref-load instead
134135
--load /root/GLM-Z1-9B-0414_slime/
135136
# Model save path during training
136137
--save /root/GLM-Z1-9B-0414_slime/
@@ -185,7 +186,7 @@ ROLLOUT_ARGS=(
185186
--n-samples-per-prompt 8
186187
--num-steps-per-rollout 1
187188
--global-batch-size 128
188-
189+
189190
# Rollout sampling parameters
190191
--rollout-max-response-len 8192
191192
--rollout-temperature 0.8
@@ -490,7 +491,7 @@ async def generate(args, sample: Sample, sampling_params) -> Sample:
490491
# ... tokenization and appending ...
491492
loss_masks += [0] * len(tool_tokens) # loss_mask = 0
492493
full_response += tool_output
493-
494+
494495
elif action == "answer":
495496
break # end loop
496497

@@ -553,4 +554,4 @@ ray job submit --address="http://127.0.0.1:8265" \
553554
slime has been deeply optimized for distributed training of large-scale Mixture of Experts (MoE) models. We provide some end-to-end training cases for reference:
554555

555556
- [Example: 64xH100 Training GLM-4.5](models/glm4.5-355B-A32B.md)
556-
- [Example: 128xH100 Training DeepSeek-R1](models/deepseek-r1.md)
557+
- [Example: 128xH100 Training DeepSeek-R1](models/deepseek-r1.md)

advanced/speculative-decoding.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
<link rel="prev" title="Multi-Agent RL" href="../_examples_synced/multi_agent/README.html" />
5555
<meta name="viewport" content="width=device-width, initial-scale=1"/>
5656
<meta name="docsearch:language" content="en"/>
57-
<meta name="docbuild:last-update" content="Sep 08, 2025"/>
57+
<meta name="docbuild:last-update" content="Sep 09, 2025"/>
5858
</head>
5959

6060

@@ -629,7 +629,7 @@ <h3><a class="reference external" href="https://github.com/sgl-project/sglang/pu
629629

630630
<div class="footer-item">
631631
<p class="last-updated">
632-
Last updated on Sep 08, 2025.
632+
Last updated on Sep 09, 2025.
633633
<br/>
634634
</p>
635635
</div>

blogs/introducing_slime.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
<link rel="prev" title="v0.1.0: Redefining High-Performance RL Training Frameworks" href="release_v0.1.0.html" />
5454
<meta name="viewport" content="width=device-width, initial-scale=1"/>
5555
<meta name="docsearch:language" content="en"/>
56-
<meta name="docbuild:last-update" content="Sep 08, 2025"/>
56+
<meta name="docbuild:last-update" content="Sep 09, 2025"/>
5757
</head>
5858

5959

@@ -625,7 +625,7 @@ <h2>Roadmap<a class="headerlink" href="#roadmap" title="Link to this heading">#<
625625

626626
<div class="footer-item">
627627
<p class="last-updated">
628-
Last updated on Sep 08, 2025.
628+
Last updated on Sep 09, 2025.
629629
<br/>
630630
</p>
631631
</div>

blogs/release_v0.1.0.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
<link rel="prev" title="AMD" href="../platform_support/amd_tutorial.html" />
5555
<meta name="viewport" content="width=device-width, initial-scale=1"/>
5656
<meta name="docsearch:language" content="en"/>
57-
<meta name="docbuild:last-update" content="Sep 08, 2025"/>
57+
<meta name="docbuild:last-update" content="Sep 09, 2025"/>
5858
</head>
5959

6060

@@ -683,7 +683,7 @@ <h2>Correctness Verification<a class="headerlink" href="#correctness-verificatio
683683

684684
<div class="footer-item">
685685
<p class="last-updated">
686-
Last updated on Sep 08, 2025.
686+
Last updated on Sep 09, 2025.
687687
<br/>
688688
</p>
689689
</div>

0 commit comments

Comments
 (0)