-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy patharguments.py
More file actions
985 lines (912 loc) · 42.2 KB
/
arguments.py
File metadata and controls
985 lines (912 loc) · 42.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
import os
from transformers import AutoConfig
from slime.backends.sglang_utils.arguments import add_sglang_arguments
from slime.backends.sglang_utils.arguments import validate_args as sglang_validate_args
def reset_megatron_args(parser, name, default):
"""
Reset the default value of a Megatron argument.
:param parser: The argument parser.
:param name: The name of the argument to reset.
:param default: The new default value.
"""
for action in parser._actions:
if name in action.option_strings:
action.default = default
break
def get_slime_extra_args_provider(add_custom_arguments=None):
def add_slime_arguments(parser):
# Ray
def add_cluster_arguments(parser):
parser.add_argument("--actor-num-nodes", type=int, default=1, help="Number of nodes for training actor")
parser.add_argument(
"--actor-num-gpus-per-node", type=int, default=8, help="Number of gpus per node for training actor"
)
parser.add_argument(
"--rollout-num-gpus",
type=int,
default=None,
help=(
"Number of GPUs for inference. Note that when using --colocate, "
"i.e. the training and the inference engines are on the same gpus, this param will be ignored and will be set as "
"actor_num_gpus_per_node * actor_num_nodes."
),
)
parser.add_argument(
"--rollout-num-gpus-per-engine",
type=int,
default=1,
help="Number of GPUs per inference engine, just like the tp_size in sglang.",
)
parser.add_argument(
"--colocate",
action="store_true",
default=False,
help=(
"Whether to colocate the inference engines and the actor. "
"Turning this on will also set --offload to true."
),
)
parser.add_argument(
"--offload",
action="store_true",
default=False,
help=(
"Whether to offload the rollout generator and training actor to CPU during training. "
"This will always be true when --colocate is set."
),
)
return parser
# rollout
def add_rollout_arguments(parser):
parser.add_argument(
"--hf-checkpoint",
type=str,
default=None,
help=(
"The huggingface checkpoint of the trained model. "
"This is used to initialize sglang and also provide the tokenizer. "
"Note that, we will always update the parameters in sglang with that of megatron before training, "
"so you only need to provide a huggingface checkpoint that has the same architecture as the model you want to train. "
"It doesn't necessary need to contain the most up-to-date parameters."
),
)
parser.add_argument(
"--model-name",
type=str,
default=None,
help=(
"The name of the model, this is used to convert the megatron weights into huggingface format. "
"If not set, we will use `type(AutoConfig.from_pretrained(args.hf_checkpoint)).__name__.lower()` as model_name. "
"Also, sometimes this will help alleviate the bug that transformers cannot find certain model."
),
)
parser.add_argument(
"--rollout-function-path",
type=str,
default="slime.rollout.sglang_example.generate_rollout",
help=(
"Path to the rollout generation function."
"You should use this model to create your own custom rollout function, "
"and then set this to the path of your custom rollout function. "
"The signature of the function should be "
"`def generate_rollout(args, rollout_id, *, evaluation=False) -> list[list[Sample]]`"
"and within the output sample, you should at least set `tokens`, `response_length`, `reward` "
"and `truncated`."
),
)
parser.add_argument(
"--rollout-temperature",
type=float,
default=1.0,
help="the temperature for the inference engine during rollout.",
)
parser.add_argument(
"--rollout-top-p", type=float, default=1.0, help="the top-p for the inference engine during rollout."
)
parser.add_argument(
"--rollout-top-k", type=int, default=-1, help="the top-k for the inference engine during rollout."
)
parser.add_argument(
"--rollout-max-prompt-len",
type=int,
default=None,
help=(
"The maximum length of the prompt for the inference engine during rollout. "
"If set, we will filter out the long prompts during initialization of the global dataset. "
"This is not recommended if the dataset is large."
),
)
parser.add_argument(
"--rollout-max-response-len",
type=int,
default=1024,
help=(
"The maximum length of the response for the inference engine during rollout. "
"It is basically `max_tokens` in sglang."
),
)
parser.add_argument(
"--rollout-skip-special-tokens",
action="store_true",
default=False,
help=(
"Whether to skip special tokens in the response during rollout. "
"This is useful when you want to use the response as a prompt for the next rollout."
),
)
parser.add_argument(
"--rollout-stop",
type=str,
nargs="+",
default=None,
help=(
"The stop words for the inference engine during rollout. "
"It can be a list of strings or a single string. "
"It may be hard to pass special tokens in command line, in that case rollout_stop_token_ids can be used."
),
)
parser.add_argument(
"--rollout-stop-token-ids",
type=int,
nargs="+",
default=None,
help=(
"The stop token ids for the inference engine during rollout. "
"It can be a list of integers or a single integer."
),
)
parser.add_argument(
"--rollout-shuffle",
action="store_true",
default=False,
help=("Whether to shuffle the prompts during rollout."),
)
parser.add_argument(
"--rollout-seed",
type=int,
default=42,
help=(
"The seed for the random number generator during rollout. "
"This is used to shuffle the prompts and also for the random sampling of the prompts."
),
)
# sampling
parser.add_argument(
"--over-sampling-batch-size",
type=int,
default=None,
help=(
"This defines the granularity of the sampling batch in the rollout function. "
"When the number of available samples falls below the target, a sampling "
"operation of size over_sampling_batch_size will be triggered."
"Regardless of whether partial rollout is used or filters are applied, "
"the sampling granularity is always determined by this value. "
"If this value is None, rollout_batch_size will be used as the default over_sampling_batch_size."
),
)
parser.add_argument(
"--over-sampling-filter-input-size",
type=int,
default=None,
help=(
"This is the input size for the over sampling filter."
"This value will replace the rollout_batch_size as target batch size "
"(number of complete, valid samples to be generated) when the over sampling filter is applied."
),
)
parser.add_argument(
"--over-sampling-filter-path",
type=str,
default=None,
help=(
"This parameter is used with the over_sampling_filter_input_size. "
"The over sampling filter is applied only after enough data has been generated."
"You could use `slime.rollout.filter_hub.over_sampling_filters.sort_by_reward_std` as an example."
),
)
parser.add_argument(
"--dynamic-sampling-filter-path",
type=str,
default=None,
help=(
"This is the filter function for dynamic sampling. "
"It should be able to judge whether the result of a prompt should be selected or not."
"We will do dynamic filter for sampling as in DAPO. e.g. not all correct or all wrong samples."
"You could use `slime.rollout.filter_hub.dynamic_sampling_filters.check_reward_nonzero_std` as an example."
),
)
# partial rollout
parser.add_argument(
"--partial-rollout",
action="store_true",
default=False,
help=(
"Whether to use partial rollout. "
"If set, the unfinished samples during dynamic sampling will be recycled back to data buffer. "
"This is useful for long responses."
),
)
parser.add_argument(
"--custom-generate-function-path",
type=str,
default=None,
help=(
"Only substitue the `def generate(args, sample, sampling_params)` function within the example rollout function. "
"This should be useful if you need to implement some special rollout logic, e.g. multi-turn, function calling."
),
)
parser.add_argument(
"--buffer-filter-path",
type=str,
default=None,
help=(
"Path to the buffer filter function. "
"It should be able to select the samples in the buffer. "
"The function should take list[list[Sample]] and return list[list[Sample]]."
),
)
# update weight
parser.add_argument(
"--update-weight-buffer-size",
type=int,
default=512 * 1024**2,
help=(
"buffer size for update weight, in bytes. "
"This is used for updating weights by chunk and should be useful for MoE models."
),
)
parser.add_argument(
"--update-weights-interval",
type=int,
default=1,
help="Interval for updating the weights",
)
parser.add_argument(
"--keep-old-actor",
action="store_true",
help="Whether to keep the rollout model on training process",
)
parser.add_argument(
"--rollout-data-postprocess-path",
type=str,
default=None,
help=(
"The called after we have all the rollout data including log_probs. "
"It may be helpful for updating loss mask."
),
)
return parser
# data
def add_data_arguments(parser):
# dataset
# TODO: maybe add an num_epoch and calculate the num_rollout from buffer
parser.add_argument(
"--num-rollout",
type=int,
default=None,
help="Number of rollout steps. Currently, we don't support passing num_epoch and calculate num_rollout from data size.",
)
parser.add_argument(
"--num-epoch",
type=int,
default=None,
help=(
"Number of epochs for the training. "
"This is used to calculate the number of rollout steps from the dataset size. "
"If set, we will calculate the number of rollout steps as `num_rollout = num_epoch * dataset_size // rollout_batch_size`."
),
)
parser.add_argument(
"--disable-rollout-global-dataset",
action="store_false",
dest="rollout_global_dataset",
help=(
"Whether to use a global dataset for rollout. "
"If set, the rollout will use the `--prompt-data` as the prompt dataset, "
"and the prompts for rollout will be sampled from the dataset. "
"If not set, you need to manage the data by your self."
),
)
parser.add_argument(
"--prompt-data",
type=str,
default=None,
help=(
"The path to the prompt data. "
"Currently we only support jsonl format, and each line should contains --input-key and --label-key, "
"which will be used as the prompt and the label respectively. "
"If you want to use a custom template, you can set --apply-chat-template to true, in that case, "
"the input should be the same structure as an openai message, e.g. [\{'role': 'user', 'content': 'blabla'\}]. "
),
)
parser.add_argument("--apply-chat-template", action="store_true", default=False)
parser.add_argument("--input-key", type=str, default="input", help="JSON dataset key")
parser.add_argument("--label-key", type=str, default=None, help="JSON dataset key")
parser.add_argument("--metadata-key", type=str, default="metadata", help="JSON dataset key")
parser.add_argument(
"--tool-key",
type=str,
default=None,
help=(
"When need to add tools during apply_chat_template, you should provide the key for the tools in the prompt dataset."
),
)
parser.add_argument(
"--start-rollout-id",
type=int,
default=None,
help=(
"The starting rollout step, if not set, will try to load the step from --load when doing continue training, "
"otherwise will be set to 0, meaning training from start."
),
)
# batch sizes
parser.add_argument(
"--rollout-batch-size",
type=int,
required=True,
help=(
"The number of prompts in each rollout step. "
"The total data returned should be rollout_batch_size * n_samples_per_prompt. "
),
)
parser.add_argument(
"--n-samples-per-prompt", type=int, default=1, help="Number of responses for each prompt in generation"
)
# gbs of the training, not that the gbs if of sample, not of prompts,
# so if you hope to train 1 step for each rollout, the global_bach_size should be set as
# `rollout_batch_size * n_samples_per_prompt`.
reset_megatron_args(parser, "--global-batch-size", None)
parser.add_argument(
"--num-steps-per-rollout",
type=int,
default=None,
help=(
"Number of steps per rollout, e.g. It is equivalent to setting gbs as "
"`rollout_batch_size * n_samples_per_prompt // num_steps_per_rollout`."
),
)
# mbs for the training, will be ignored if `use_dynamic_batch_size` is set.
reset_megatron_args(parser, "--micro-batch-size", 1)
# mbs for calculating the log probs, will be ignored if `use_dynamic_batch_size` is set.
parser.add_argument(
"--ref-micro-batch-size",
type=int,
default=None,
help=(
"Micro batch size for calculating log probs, as we won't do backward during log probs calculation, "
"we can set it to a larger value than the micro batch size for training. "
"This will be ignored if `use_dynamic_batch_size` is set."
),
)
parser.add_argument(
"--balance-data",
action="store_true",
default=False,
help=(
"Balance the number of tokens between data parallel ranks with `karmarkar_karp` for verl. "
"Note that this may allocate the different response of the same prompt into different training steps."
),
)
parser.add_argument(
"--use-dynamic-batch-size",
action="store_true",
default=False,
help=(
"Because the sample length varies, to maximize the GPU utilization, "
"we will use the dynamic batch size to adjust the micro batch size according to the maximum number of tokens each gpu can run. "
"For example, if we have 3 samples, with the length of 100, 200, and 300, and the max_tokens_per_gpu is 300, when enabling "
"dynamic batch size, slime will make 2 micro batches, i.e. [100, 200], [300]."
),
)
parser.add_argument(
"--max-tokens-per-gpu",
type=int,
default=None,
help=(
"The maximum number of tokens per GPU for dynamic batch size. "
"Not that when enabling context parallel (CP), the max tokens per gpu should be around "
"`max_response_len // cp_size` instead of `max_response_len`."
),
)
parser.add_argument(
"--log-probs-max-tokens-per-gpu",
type=int,
default=None,
help=(
"The maximum number of tokens per GPU for calculating log probs. "
"This is used to calculate the log probs of the responses during rollout, "
"and should be set to a larger value than `max_tokens_per_gpu` if you want better performance. "
),
)
return parser
def add_eval_arguments(parser):
parser.add_argument(
"--eval-function-path",
type=str,
default=None,
help=(
"Path to the eval generation function."
"If not set, we will use rollout_function_path as the default. "
),
)
# change the default value of eval_interval from Megatron to None
for action in parser._actions:
if "--eval-interval" in action.option_strings:
action.default = None
break
parser.add_argument(
"--eval-prompt-data",
type=str,
default=None,
nargs="+",
help=(
"Path to the evaluation prompt data, "
"should first input the name of the eval dataset and then the path, e.g. "
"aime /path/to/aime.jsonl"
),
)
# The following keys are used to override the rollout version during eval.
parser.add_argument("--eval-input-key", type=str, default=None, help="JSON dataset key")
parser.add_argument("--eval-label-key", type=str, default=None, help="JSON dataset key")
parser.add_argument("--eval-tool-key", type=str, default=None, help="JSON dataset key")
parser.add_argument(
"--n-samples-per-eval-prompt",
type=int,
default=1,
help="number of responses for each prompt in generation",
)
parser.add_argument("--eval-temperature", type=float, default=None)
parser.add_argument("--eval-top-p", type=float, default=None)
parser.add_argument("--eval-top-k", type=int, default=None)
parser.add_argument("--eval-max-response-len", type=int, default=None)
parser.add_argument("--eval-min-new-tokens", type=int, default=None)
return parser
def add_algo_arguments(parser):
parser.add_argument(
"--ref-load",
type=str,
default=None,
help=(
"The checkpoint for reference model. "
"When --load is not set, this will be used as the initial checkpoint for training. "
),
)
parser.add_argument("--eps-clip", type=float, default=0.2, help="PPO clip range")
parser.add_argument("--eps-clip-high", type=float, default=None, help="PPO clip upper range")
parser.add_argument(
"--eps-clip-c",
type=float,
default=None,
help="lower bound of the value for Dual-clip PPO from https://arxiv.org/pdf/1912.09729",
)
parser.add_argument("--kl-coef", type=float, default=0.00, help="KL penalty in PPO")
parser.add_argument(
"--loss-type",
type=str,
choices=["policy_loss", "sft_loss", "custom_loss"],
default="policy_loss",
help=(
"Choose loss type, currently support ppo policy_loss or sft_loss, "
"if custom_loss is set, we will use the function path from `--custom-loss-function-path`."
),
)
parser.add_argument(
"--custom-loss-function-path",
type=str,
default=None,
help=(
"Path to the custom loss function, if the loss_type is `custom_loss`, "
"we will use this function to calculate the loss. "
),
)
parser.add_argument(
"--kl-loss-type",
type=str,
choices=["kl", "k2", "k3", "low_var_kl"],
default="kl",
help="Choose KL loss type: kl, k2, k3 low_var_kl",
)
parser.add_argument(
"--advantage-estimator",
type=str,
choices=["grpo", "gspo", "reinforce_plus_plus", "reinforce_plus_plus_baseline"],
default="grpo",
)
parser.add_argument(
"--disable-compute-advantages-and-returns",
action="store_false",
dest="compute_advantages_and_returns",
help=(
"Whether to disable computing advantages and returns. "
"If set, we will not compute the advantages and returns, "
"This is useful for sft or custom loss function."
),
)
parser.add_argument(
"--use-kl-loss", action="store_true", default=False, help="whether to use KL loss from GRPO"
)
parser.add_argument("--kl-loss-coef", type=float, default=0.0, help="KL penalty in PPO")
parser.add_argument("--entropy-coef", type=float, default=0.0, help="Entropy loss coef")
parser.add_argument("--gamma", type=float, default=1.0, help="Discount factor for rewards in REINFORCE++.")
parser.add_argument("--normalize-advantages", action="store_true", default=False)
parser.add_argument(
"--disable-grpo-std-normalization",
action="store_false",
dest="grpo_std_normalization",
help="from Dr.GRPO https://arxiv.org/pdf/2503.20783",
)
parser.add_argument(
"--disable-rewards-normalization",
action="store_false",
dest="rewards_normalization",
help="Disable rewards normalization",
)
parser.add_argument(
"--use-rollout-entropy",
action="store_true",
default=False,
help=(
"Whether to calculate the entropy when calculating the logprobs from actor and reference model. "
"This is useful for doing special loss mask."
),
)
return parser
# wandb
def add_wandb_arguments(parser):
# wandb parameters
parser.add_argument("--use-wandb", action="store_true", default=False)
parser.add_argument("--wandb-key", type=str, default=None)
parser.add_argument("--wandb-host", type=str, default=None)
parser.add_argument("--wandb-team", type=str, default=None)
parser.add_argument("--wandb-group", type=str, default=None)
reset_megatron_args(parser, "--wandb-project", None)
parser.add_argument(
"--disable-wandb-random-suffix",
action="store_false",
dest="wandb_random_suffix",
default=True,
help=(
"Whether to add a random suffix to the wandb run name. "
"By default, we will add a random 6 length string with characters to the run name."
),
)
parser.add_argument(
"--wandb-always-use-train-step",
action="store_true",
default=False,
help=(
"Whether to always use train step as the step metric in wandb. "
"If set, we will always use the train steps for wandb logging, "
"otherwise, will use rollout step for most info other than train/*. "
),
)
parser.add_argument(
"--log-multi-turn",
action="store_true",
default=False,
help="Whether to log information for multi-turn rollout.",
)
parser.add_argument(
"--log-passrate",
action="store_true",
default=False,
help="Whether to turn on passrate logging, which will log the pass@n of the responses in the rollout.",
)
parser.add_argument("--wandb-run-id", type=str, default=None)
return parser
# debug
def add_debug_arguments(parser):
parser.add_argument(
"--save-debug-rollout-data",
type=str,
default=None,
help=(
"Save the rollout data to this path for debugging. "
"The file will be saved to `save_debug_rollout_data.format(rollout_id)`."
),
)
parser.add_argument(
"--load-debug-rollout-data",
type=str,
default=None,
help=(
"Load the rollout data from this path for debugging. "
"The file will be loaded from `load_debug_rollout_data.format(rollout_id)`. "
"When this is enabled, slime will not instantiate sglang servers."
),
)
parser.add_argument(
"--debug-rollout-only",
action="store_true",
default=False,
help=(
"Whether to only run the rollout generation without training. "
"This is useful for debugging the rollout generation function."
),
)
parser.add_argument(
"--debug-train-only",
action="store_true",
default=False,
help=(
"Whether to only run the training without sglang servers. "
"This is useful for debugging the rollout generation function."
),
)
return parser
def add_network_arguments(parser):
parser.add_argument("--http-proxy", type=str, default=None)
parser.add_argument("--use-http2", action="store_true", default=False)
return parser
def add_reward_model_arguments(parser):
parser.add_argument(
"--rm-type",
type=str,
default=None,
help="Type of the reward model",
)
parser.add_argument(
"--reward-key",
type=str,
default=None,
help=(
"Some reward model may return a dict instead of a value, "
"this is the key to extract the reward value from the dict. "
),
)
parser.add_argument(
"--eval-reward-key",
type=str,
default=None,
help="The eval variant for --reward-key",
)
parser.add_argument(
"--group-rm", action="store_true", default=False, help="Whether to do rm on a whole group."
)
parser.add_argument(
"--rm-url",
type=str,
default=None,
help="URL for the reward model service for --rm-type remote_rm, e.g. http://localhost:8000",
)
parser.add_argument(
"--custom-rm-path",
type=str,
default=None,
help=(
"Path to the custom reward model function. "
"If set, we will use this function to calculate the reward instead of the default one. "
"The function should have the signature `def custom_rm(args, sample) -> float`."
),
)
return parser
def add_rollout_buffer_arguments(parser):
parser.add_argument(
"--rollout-buffer-url",
type=str,
default=None,
help="URL for the rollout buffer",
)
parser.add_argument(
"--fetch-trajectory-retry-times",
type=int,
default=-1,
help="Number of times to retry fetching trajectory, -1 means unlimited retry",
)
parser.add_argument(
"--min-batch-collection-ratio",
type=float,
default=1,
help="Minimum batch collection ratio",
)
parser.add_argument(
"--rollout-task-type",
type=str,
default="math",
)
parser.add_argument(
"--loss-mask-type",
type=str,
default="qwen",
choices=["qwen", "distill_qwen"],
help="Loss mask type",
)
return parser
def add_custom_megatron_plugins_arguments(parser):
"""
Add custom Megatron plugins arguments.
This is a placeholder for any additional arguments that might be needed.
"""
# Custom arguments can be added here
parser.add_argument(
"--custom-megatron-init-path",
type=str,
default=None,
)
parser.add_argument(
"--custom-megatron-before-log-prob-hook-path",
type=str,
default=None,
)
parser.add_argument(
"--custom-megatron-before-train-step-hook-path",
type=str,
default=None,
)
return parser
# Add custom arguments in front to prevent overwritten some slime arguments.
if add_custom_arguments is not None:
parser = add_custom_arguments(parser)
parser = add_cluster_arguments(parser)
parser = add_rollout_arguments(parser)
parser = add_data_arguments(parser)
parser = add_eval_arguments(parser)
parser = add_algo_arguments(parser)
parser = add_wandb_arguments(parser)
parser = add_debug_arguments(parser)
parser = add_sglang_arguments(parser)
parser = add_network_arguments(parser)
parser = add_reward_model_arguments(parser)
parser = add_rollout_buffer_arguments(parser)
parser = add_custom_megatron_plugins_arguments(parser)
# For megatron
parser.add_argument("--padded-vocab-size", type=int, default=None)
return parser
return add_slime_arguments
def parse_args(add_custom_arguments=None):
from slime.backends.megatron_utils import _vocab_size_with_padding
from slime.backends.megatron_utils import parse_args as megatron_parse_args
from slime.backends.megatron_utils import validate_args as megatron_validate_args
add_slime_arguments = get_slime_extra_args_provider(add_custom_arguments)
args = megatron_parse_args(extra_args_provider=add_slime_arguments)
if args.hf_checkpoint:
hf_config = AutoConfig.from_pretrained(args.hf_checkpoint, trust_remote_code=True)
hf_validate_args(args, hf_config)
args.rank = 0
args.world_size = args.actor_num_nodes * args.actor_num_gpus_per_node
# always use zero optimizer
args.use_distributed_optimizer = True
# never train from scratch
args.no_initialization = True
# TODO: maybe change this after megatron has good fp8 support
args.bf16 = True
if not args.tokenizer_model and not args.tokenizer_type:
print(f"--tokenizer-model not set, use --hf-checkpoint as tokenizer model.")
args.tokenizer_model = args.hf_checkpoint
args.tokenizer_type = "HuggingFaceTokenizer"
if args.ref_micro_batch_size is None:
args.ref_micro_batch_size = args.micro_batch_size
if args.kl_coef != 0 or args.use_kl_loss:
if not os.path.exists(args.ref_load):
raise FileNotFoundError(f"ref_load {args.ref_load} does not exist, please check the path.")
if not os.path.exists(os.path.join(args.ref_load, "latest_checkpointed_iteration.txt")):
print(
f"ref_load {args.ref_load} does not have latest_checkpointed_iteration.txt, "
"please make sure it is a valid megatron checkpoint directory."
)
# TODO: During loading, we need to set the start_rollout_id here.
if (
args.load is None
or not os.path.exists(args.load)
or not os.path.exists(os.path.join(args.load, "latest_checkpointed_iteration.txt"))
):
args.no_load_optim = True
args.no_load_rng = True
args.finetune = True
args.load = args.ref_load
args.start_rollout_id = 0
if args.eval_interval is not None:
assert args.eval_prompt_data is not None, "eval_prompt_data must be set when eval_interval is set"
if len(args.eval_prompt_data) == 1:
print(f"[legacy] only one eval_prompt_data detected, will assume it is data for aime")
args.eval_prompt_data = ["aime", args.eval_prompt_data[0]]
assert len(args.eval_prompt_data) % 2 == 0, "eval prompt data will need to be in pairs"
assert not (args.kl_coef != 0 and args.kl_loss_coef != 0), "Only one of kl_coef and kl_loss_coef can be set"
if args.advantage_estimator in ["reinforce_plus_plus", "reinforce_plus_plus_baseline"]:
assert args.normalize_advantages, (
"The 'reinforce_plus_plus' and 'reinforce_plus_plus_baseline' advantage estimators "
"require advantage normalization. Please add `--normalize-advantages` to your command."
)
if args.use_dynamic_batch_size:
assert args.max_tokens_per_gpu is not None, "max_tokens_per_gpu must be set when use_dynamic_batch_size is set"
if args.log_probs_max_tokens_per_gpu is None:
args.log_probs_max_tokens_per_gpu = args.max_tokens_per_gpu
if args.eps_clip_high is None:
args.eps_clip_high = args.eps_clip
if args.eval_reward_key is None:
args.eval_reward_key = args.reward_key
if args.load_debug_rollout_data is not None:
print(
f"load_debug_rollout_data {args.load_debug_rollout_data} is set, "
"will not instantiate sglang servers and will only run the rollout generation."
)
args.debug_train_only = True
if args.debug_rollout_only:
if args.colocate and args.rollout_num_gpus is None:
args.rollout_num_gpus = args.actor_num_gpus_per_node * args.actor_num_nodes
else:
args.actor_num_gpus_per_node = min(8, args.rollout_num_gpus)
args.actor_num_nodes = args.rollout_num_gpus // args.actor_num_gpus_per_node
args.colocate = False
args.offload = False
assert not (args.debug_rollout_only and args.debug_train_only), (
"debug_rollout_only and debug_train_only cannot be set at the same time, " "please set only one of them."
)
# always true on offload for colocate at the moment.
if args.colocate:
args.offload = True
if args.rollout_num_gpus != args.actor_num_gpus_per_node * args.actor_num_nodes:
print(
f"rollout_num_gpus {args.rollout_num_gpus} != actor_num_gpus_per_node {args.actor_num_gpus_per_node} "
f"* actor_num_nodes {args.actor_num_nodes}, overriding rollout_num_gpus to match actor_num_gpus_per_node * actor_num_nodes."
)
args.rollout_num_gpus = args.actor_num_gpus_per_node * args.actor_num_nodes
if args.eval_function_path is None:
args.eval_function_path = args.rollout_function_path
if args.num_steps_per_rollout is not None:
global_batch_size = args.rollout_batch_size * args.n_samples_per_prompt // args.num_steps_per_rollout
if args.global_batch_size is not None:
assert args.global_batch_size == global_batch_size, (
f"global_batch_size {args.global_batch_size} is not equal to "
f"rollout_batch_size {args.rollout_batch_size} * n_samples_per_prompt {args.n_samples_per_prompt} "
f"// num_steps_per_rollout {args.num_steps_per_rollout}"
)
args.global_batch_size = global_batch_size
assert args.rollout_batch_size * args.n_samples_per_prompt % args.global_batch_size == 0, (
f"rollout_batch_size {args.rollout_batch_size} * n_samples_per_prompt {args.n_samples_per_prompt} "
f"is not a multiple of global_batch_size {args.global_batch_size}"
)
if args.n_samples_per_prompt == 1:
args.grpo_std_normalization = False
print("n_samples_per_prompt is set to 1, grpo_std_normalization will be set to False.")
if args.vocab_size and not args.padded_vocab_size:
args.padded_vocab_size = _vocab_size_with_padding(args.vocab_size, args)
if args.over_sampling_batch_size is None:
args.over_sampling_batch_size = args.rollout_batch_size
assert args.over_sampling_batch_size >= args.rollout_batch_size, (
f"over_sampling_batch_size {args.over_sampling_batch_size} should be greater than or equal to "
f"rollout_batch_size {args.rollout_batch_size}"
)
if args.num_epoch is not None:
if args.num_rollout is not None:
print("Both num_epoch and num_rollout are set, num_epoch will be ignored.")
else:
assert args.rollout_global_dataset, (
"num_epoch is set, but rollout_global_dataset is not set, "
"please remove --disable-rollout-global-dataset to use num_epoch"
)
else:
# if num_epoch is not set, we should set num_rollout
assert args.num_rollout is not None, (
"num_epoch is not set, but num_rollout is not set, " "please set --num-rollout or --num-epoch"
)
# placeholders
args.seq_length = 4096
args.max_position_embeddings = args.seq_length
megatron_validate_args(args)
# always use varlen
args.variable_seq_lengths = True
if getattr(args, "moe_token_dispatcher_type", None) == "allgather":
print(
"--moe-token-dispatcher-type allgather does not support variable sequence length, "
"please use alltoall dispatcher instead."
)
args.moe_token_dispatcher_type = "alltoall"
sglang_validate_args(args)
return args
def hf_validate_args(args, hf_config):
equal = lambda x, y: x == y
for hf_config_name, megatron_config_name, compare_fn in [
("hidden_size", "hidden_size", equal),
("num_attention_heads", "num_attention_heads", equal),
("num_hidden_layers", "num_layers", equal),
("intermediate_size", "ffn_hidden_size", equal),
("tie_word_embeddings", "untie_embeddings_and_output_weights", lambda x, y: not x == y),
("rms_norm_eps", "norm_epsilon", equal),
]:
if hasattr(hf_config, hf_config_name):
assert compare_fn(getattr(hf_config, hf_config_name), getattr(args, megatron_config_name)), (
f"{hf_config_name} in hf config {getattr(hf_config, hf_config_name)} is not equal to "
f"{megatron_config_name} {getattr(args, megatron_config_name)}, please check the config."
)