Command Line Arguments

Megatron Parameters

Training Parameters:

  • 🔥micro_batch_size: Batch size per device, default is 1.

  • 🔥global_batch_size: Total batch size, equivalent to micro_batch_size * data parallel size * gradient accumulation steps. Default is 16.

  • 🔥recompute_granularity: Granularity of activation recomputation, options are ‘full’, ‘selective’. ‘full’ means recomputing the entire transformer layer, while ‘selective’ means only recomputing the core attention part of the transformer layer. ‘selective’ is generally recommended. Default is ‘selective’.

  • 🔥recompute_method: This parameter takes effect only when recompute_granularity is set to ‘full’, options are ‘uniform’, ‘block’. Default is None.

  • 🔥recompute_num_layers: This parameter takes effect only when recompute_granularity is set to ‘full’. Default is None. If recompute_method is set to uniform, this parameter specifies the number of transformer layers in each uniformly divided recomputation unit. For example, you can specify --recompute_granularity full --recompute_method uniform --recompute_num_layers 4. The larger the recompute_num_layers, the smaller the memory usage but higher computation cost. Default is None.

  • recompute_modules: Options include “core_attn”, “moe_act”, “layernorm”, “mla_up_proj”, “mlp”, and “moe”. The default value is ["core_attn"]. This parameter takes effect when --recompute_granularity selective is set. For example, during MoE training, you can reduce memory usage by specifying --recompute_granularity selective --recompute_modules core_attn moe. Among these, “core_attn”, “mlp”, and “moe” use normal checkpointing, while “moe_act”, “layernorm”, and “mla_up_proj” use output-discarding checkpointing.

    • “core_attn”: Recomputes the core attention part of the Transformer layer.

    • “mlp”: Recomputes the dense MLP layer.

    • “moe”: Recomputes the MoE layer.

    • “moe_act”: Recomputes the MLP activation function part in the MoE module.

    • “layernorm”: Recomputes the input_layernorm and pre_mlp_layernorm.

    • “mla_up_proj”: Recomputes the MLA up-projection and RoPE application parts.

  • deterministic_mode: Deterministic mode, which may lead to slower training speed, default is False.

  • 🔥train_iters: Total number of training iterations, default is None.

  • 🔥log_interval: Log interval (unit: iters), default is 5.

  • tensorboard_dir: Directory where TensorBoard logs are written. Default is None, meaning logs will be stored in the f'{save}/runs' directory.

  • no_masked_softmax_fusion: Default is False. Disables scaling, masking, and softmax fusion for query_key_value.

  • no_bias_dropout_fusion: Default is False. Disables bias and dropout fusion.

  • no_bias_swiglu_fusion: Default is False. Specify --no_bias_dropout_fusion true to disable bias and swiglu fusion.

  • no_rope_fusion: Default is False. Specify --no_rope_fusion true to disable rope fusion.

  • no_gradient_accumulation_fusion: Default is False. Specify --no_gradient_accumulation_fusion true to disable gradient accumulation fusion.

  • 🔥cross_entropy_loss_fusion: Enables cross-entropy loss calculation fusion. Default is False.

  • cross_entropy_fusion_impl: Implementation of cross-entropy loss fusion. Options include ‘native’ and ‘te’. Defaults to ‘native’.

  • calculate_per_token_loss: Scales the cross-entropy loss according to the number of non-padded tokens in the global batch. Default is True.

    • Note: The default is False in RLHF.

  • 🔥attention_backend: The attention backend to use (flash, fused, unfused, local, auto). Defaults to flash.

    • Note: The recommended flash_attn version is 2.7.4.post1. In “ms-swift < 3.7” the default is set to “auto”.

    • If ‘flash_attention_3’ is installed, FA3 will be used by default. For training scripts, please refer to here.

  • optimizer: Optimizer type, options are ‘adam’, ‘sgd’. Default is adam.

  • 🔥optimizer_cpu_offload: Offloads the optimizer state to CPU. Default is False.

  • optimizer_offload_fraction: The fraction of the optimizer state to offload to CPU. Default is 1.0.

  • use_precision_aware_optimizer: Use the precision-aware optimizer in TransformerEngine, which allows setting the main parameters and optimizer states to lower precision, such as fp16 and fp8.

  • main_grads_dtype: The dtype of main gradients when use_precision_aware_optimizer is enabled. Options are ‘fp32’ and ‘bf16’. Default is ‘fp32’.

  • main_params_dtype: The dtype of main parameters when use_precision_aware_optimizer is enabled. Options are ‘fp32’ and ‘fp16’. Default is ‘fp32’.

  • exp_avg_dtype: The dtype of exp_avg (i.e., the first moment in the Adam optimizer) when use_precision_aware_optimizer is enabled. This dtype is used for storing the optimizer state in memory during training, but does not affect the precision in kernel computation. Options are ‘fp32’, ‘fp16’, ‘bf16’, and ‘fp8’. Default is ‘fp32’.

  • exp_avg_sq_dtype: The dtype of exp_avg_sq (i.e., the second moment in the Adam optimizer) when use_precision_aware_optimizer is enabled. This dtype is used for storing the optimizer state in memory during training, but does not affect the precision in kernel computation. Options are ‘fp32’, ‘fp16’, ‘bf16’, and ‘fp8’. Default is ‘fp32’.

  • dataloader_type: Default is ‘cyclic’, options are ‘single’, ‘cyclic’, ‘external’. If --streaming is enabled, set it to external.

  • manual_gc: Disables the default garbage collector and manually triggers garbage collection. Default is False.

  • manual_gc_interval: Interval at which garbage collection is triggered. Default is 0.

  • seed: Random seed for python, numpy, pytorch, and cuda, default is 42.

  • 🔥num_workers: Number of workers for the dataloader, default is 4.

    • Note: If --streaming true is set, it will be set to 1. seq_length: Defaults to None, meaning it is set to max_length. To restrict the dataset length, please use the --max_length parameter in the basic arguments; there is no need to set this parameter.

  • use_cpu_initialization: Initializes weights on the CPU, default is False. Used during HF and MCore weight conversion.

  • extra_megatron_kwargs: Additional parameters passed to Megatron, provided as a JSON object. Defaults to None.

Learning Rate Parameters:

  • 🔥lr: The initial learning rate. The actual learning rate for each iteration will be determined based on the learning rate warmup and decay strategies. The default value is None; for full-parameter training, the default is 1e-5, while for LoRA training, the default is 1e-4.

  • lr_decay_style: Learning rate decay strategy, default is ‘cosine’. Commonly set to ‘cosine’, ‘linear’, or ‘constant’.

  • 🔥lr_decay_iters: Number of iterations for learning rate decay. Default is None, meaning it will be set to --train_iters.

  • lr_warmup_iters: Number of iterations for linear learning rate warm-up, default is 0.

  • 🔥lr_warmup_fraction: The fraction of the linear learning rate warmup phase, defaults to None.

  • 🔥min_lr: Minimum value of the learning rate, clipping any learning rate below this threshold to this value, default is 0.

Regularization Parameters:

  • 🔥weight_decay: Default is 0.1.

  • 🔥clip_grad: L2 gradient clipping, default is 1.0.

  • adam_beta1: Default is 0.9.

  • adam_beta2: Default is 0.95.

  • adam_eps: Default is 1e-8.

  • sgd_momentum: Default is 0.9.

Checkpoint Parameters:

  • 🔥save: Output directory for checkpoints, default is None. During training, if this parameter is not set, it defaults to f'megatron_output/{model_suffix}', e.g., 'megatron_output/Qwen2.5-7B-Instruct'.

    • Note: When training on multiple machines, ensure that the save paths on each node point to the same location. Otherwise, you will need to manually consolidate these weights after training.

  • 🔥save_interval: Checkpoint saving interval (steps), default is 500.

    • Note: Weights will always be saved at the end of training.

  • 🔥no_save_optim: Do not save optimizer, default is False.

  • 🔥no_save_rng: Do not save RNG, default is False.

  • 🔥load: Directory of the checkpoint to load, default is None.

    • Note: If you did not convert the weights with ms-swift’s swift export, you must also specify --model <hf-repo> so that the config.json configuration file can be loaded.

  • 🔥no_load_optim: Do not load optimizer, default is False.

  • 🔥no_load_rng: Do not load RNG, default is False.

  • 🔥finetune: Load and fine-tune the model. Optimizer and random seed states from the checkpoint will not be loaded, and the number of iterations will be set to 0. The default is False.

    • Note: For checkpoint resumption (--load), if --finetune true is set, the dataset will not be skipped; if not set, previously trained datasets will be skipped.

    • Streaming datasets (--streaming) are currently not supported for skipping datasets.

  • ckpt_format: Format of the checkpoint. Options are ‘torch’, ‘torch_dist’, ‘zarr’. Default is ‘torch_dist’.

  • no_initialization: Do not initialize weights, default is True.

  • auto_detect_ckpt_format: Automatically detect whether the checkpoint format is legacy or distributed. Default is True.

  • exit_on_missing_checkpoint: If --load is set but no checkpoint is found, exit directly instead of initializing. Default is True.

Distributed Parameters:

  • distributed_backend: Distributed backend, options are ‘nccl’, ‘gloo’. Default is nccl.

  • 🔥use_distributed_optimizer: Use a distributed optimizer. Default is True.

  • 🔥tensor_model_parallel_size: TP (Tensor Parallelism) size, default is 1.

  • 🔥pipeline_model_parallel_size: PP (Pipeline Parallelism) size, default is 1.

  • 🔥decoder_first_pipeline_num_layers: The number of Transformer layers in the first pipeline stage of the decoder. Default is None, which means the Transformer layers are evenly distributed across all pipeline stages.

  • 🔥decoder_last_pipeline_num_layers: The number of Transformer layers in the last pipeline stage of the decoder. Default is None, which means the Transformer layers are evenly distributed across all pipeline stages.

  • 🔥sequence_parallel: Enables sequence parallel optimization; this option takes effect only when tensor_model_parallel_size is set. Default is False.

  • 🔥context_parallel_size: CP (Context Parallelism) size, default is 1.

  • tp_comm_overlap: Overlap tensor parallel communication with GEMM (General Matrix Multiplication) kernels (to reduce communication time). Default is False.

  • 🔥overlap_grad_reduce: Overlap grad reduction operations in DDP (to reduce DP communication time). Default is False.

  • 🔥overlap_param_gather: Overlap all-gather of parameters in the distributed optimizer (to reduce DP communication time). Default is False.

  • distributed_timeout_minutes: The timeout duration for torch.distributed (in minutes). This parameter is deprecated and is now controlled by the ddp_timeout in the Base Arguments, with a default value of 300000 minutes.

Logging Parameters:

  • log_params_norm: Logs the norm of parameters. Default is False.

  • log_throughput: Logs throughput per GPU. Default is False.

    • Note: In non-packing scenarios, log_throughput is not accurate because seq_length does not equal the actual sequence length.

  • tensorboard_log_interval: Interval (steps) for logging to TensorBoard, default is 1.

  • tensorboard_queue_size: Queue length (related to disk I/O), similar to write intervals. Default is 50.

  • log_timers_to_tensorboard: Logs timers to TensorBoard. Default is True.

  • no_log_learning_rate_to_tensorboard: Do not log learning rate to TensorBoard. Default is False.

  • log_validation_ppl_to_tensorboard: Writes validation perplexity to TensorBoard. Default is True.

  • log_memory_to_tensorboard: Writes memory logs to TensorBoard. Default is True.

  • logging_level: Logging level. Default is None.

  • wandb_project: The name of the wandb project. Defaults to ‘’, which means ignoring wandb.

  • wandb_exp_name: The name of the wandb experiment. Defaults to ‘’.

  • wandb_save_dir: The local path to save wandb results. Defaults to ‘’.

Evaluation Parameters:

  • 🔥eval_iters: The number of iterations for evaluation. Defaults to -1, and a suitable value will be set based on the size of the validation dataset.

    • Note: If using a streaming dataset, this value needs to be set manually.

  • 🔥eval_interval: The evaluation interval (steps), i.e., how many steps between each evaluation. The default is None, which means it will be set to save_interval.

FP8 Parameters:

  • fp8_format: The FP8 format scheme used for FP8 tensors in the forward and backward pass. Options are ‘e4m3’ and ‘hybrid’. Default is None.

  • fp8_recipe: The FP8 recipe (algorithm scheme) used for FP8 tensors in the forward and backward pass. Options are ‘tensorwise’, ‘delayed’, ‘mxfp8’, and ‘blockwise’. Default is ‘delayed’.

  • fp8_amax_history_len: Number of steps for which amax history is recorded per tensor. Default is 1024.

  • fp8_amax_compute_algo: Algorithm for computing amax from history. Options are ‘most_recent’ and ‘max’. Default is ‘max’.

  • fp8_param_gather: Keep the compute parameter in FP8 (do not use any other intermediate dtype) and perform the parameter all-gather in FP8 format. Default is False.

Mixed Precision Parameters:

  • fp16: FP16 mode. The default is None, and it will be set according to the model’s torch_dtype. The torch_dtype is read from the config.json by default.

  • bf16: BF16 mode. The default is None, and it will be set according to the model’s torch_dtype.

  • apply_query_key_layer_scaling: Scales Q * K^T by 1 / layer number (e.g., divide by layer_num for layer_num-th layer). This is helpful for FP16 training. Default is None, meaning that if --fp16 is used, it will be set to True.

  • attention_softmax_in_fp32: Uses FP32 for computations in attention_mask and softmax. Default is True.

Model Parameters: (The following parameters typically do not need to be set as they will be configured based on the HF model’s config.json; users don’t need to worry about them)

  • num_layers: Number of transformer layers, default is None.

  • hidden_size: Transformer hidden size, default is None.

  • ffn_hidden_size: Hidden size of the FFN layer in the transformer. Default is None, set to 4*hidden_size.

  • num_attention_heads: Number of transformer attention heads, default is None.

  • group_query_attention: Default is None. If num_query_groups > 1, group_query_attention is set to True, otherwise False.

  • num_query_groups: Default is 1.

  • max_position_embeddings: Maximum length of positional embeddings, default is None.

  • position_embedding_type: Type of positional embedding, options are ‘learned_absolute’, ‘rope’, ‘mrope’, ‘relative’, and ‘none’. Default is ‘rope’.

  • rotary_base: Default is 10000.

  • rotary_percent: Default is 1.

  • normalization: Options are ‘LayerNorm’, ‘RMSNorm’. Default is RMSNorm.

  • norm_epsilon: Default is 1e-5.

  • swiglu: Uses swiglu instead of the default gelu. Default is True.

  • untie_embeddings_and_output_weights: Unties embedding and output weights. Default is True.

  • disable_bias_linear: Disables bias in linear layers. Default is True.

  • add_qkv_bias: Adds bias only to QKV linear layers. Default is True.

  • attention_dropout: Default is 0.

  • hidden_dropout: Default is 0.

  • kv_channels: Defaults to None, set to args.hidden_size // args.num_attention_heads.

  • qk_layernorm: Whether to apply layer normalization to Q and K.

  • transformer_impl: Which transformer implementation to use, options are ‘local’ and ‘transformer_engine’. Default is transformer_engine.

  • padded_vocab_size: Full vocabulary size, default is None.

  • rope_scaling: Related parameters for rope_scaling, default is None. Refer to the format in llama3.1 config.json. Pass the value as a JSON string.

MoE Parameters:

  • num_experts: The number of experts in MoE, default is None. Automatically read from config.json.

  • moe_layer_freq: Frequency distribution between MoE layers and Dense layers. Default is None. This parameter is read from config.json.

  • moe_ffn_hidden_size: Hidden layer size of the feedforward network (ffn) for each expert. Default is None and will be automatically read from config.json. If not found and num_experts is not None, it will be set to ffn_hidden_size.

  • moe_shared_expert_intermediate_size: The total FFN hidden layer size for shared experts. If there are multiple shared experts, it should equal num_shared_experts * ffn_size_of_each_shared_expert. Default is None. Automatically read from config.json.

  • moe_router_topk: The number of experts each token is routed to. Default is None. Automatically read from config.json.

  • moe_router_pre_softmax: Enable pre-softmax routing for MoE, meaning that softmax will be applied before top-k selection. Default is None. Automatically read from config.json.

  • 🔥moe_router_dtype: Data type used for routing computation and expert output weighted averaging. Options are ‘none’, ‘fp32’, and ‘fp64’, which enhances numerical stability, especially when the number of experts is large. When used together with moe_permute_fusion, the performance impact is negligible. Default is ‘fp32’. ‘none’ means no change to data type.

  • moe_router_score_function: Scoring function for MoE TopK routing. Can be “softmax” or “sigmoid”. Default is None and is read from config.json.

  • moe_router_bias_update_rate: Update rate of expert bias in the auxiliary-loss-free load balancing strategy. Expert bias is updated based on the number of tokens each expert is assigned in the global batch: bias increases for experts assigned fewer tokens, and decreases for those assigned more tokens. Default is 1e-3, same as used in DeepSeekV3.

  • moe_router_enable_expert_bias: TopK routing with dynamic expert bias in the auxiliary-loss-free load balancing strategy. Routing decisions are based on the sum of routing scores and expert bias. See details at: https://arxiv.org/abs/2408.15664. Default is None and is automatically read from config.json.

  • moe_router_topk_scaling_factor: Default is None. This parameter is read from config.json.

  • moe_router_load_balancing_type: Determines the router’s load balancing strategy. Options are “aux_loss”, “seq_aux_loss”, “sinkhorn”, and “none”. Default is None and is read from config.json.

  • 🔥expert_model_parallel_size: The degree of expert parallelism, default is 1.

  • 🔥expert_tensor_parallel_size: Degree of expert tensor parallelism. Defaults to None, which inherits the value of --tensor_model_parallel_size.

  • moe_token_dispatcher_type: The type of token dispatcher to use. Options include ‘allgather’, ‘alltoall’, ‘flex’, and ‘alltoall_seq’. Default is ‘alltoall’.

  • moe_enable_deepep: Experimental feature, Enables DeepSeek/DeepEP for efficient token dispatching and combination in MoE models. Only works when using the flexible token dispatcher by setting --moe_token_dispatcher_type flex.

  • 🔥moe_grouped_gemm: When each rank contains multiple experts, multiple local GEMM kernels can be launched in parallel streams to improve utilization and performance by using GroupedLinear from TransformerEngine. Default is False.

  • 🔥moe_permute_fusion: Fuses token permutation operations during token dispatch. Default is False.

  • 🔥moe_aux_loss_coeff: Default is 0, which disables aux_loss.

    • Note: In ms-swift versions earlier than 3.7.1, the default is None and the value is automatically loaded from config.json.

  • moe_z_loss_coeff: Scaling coefficient for z-loss. Default is None.

  • moe_expert_capacity_factor: Capacity factor for each expert. None means no token will be dropped. Default is None and will be automatically read from config.json.

  • 🔥moe_shared_expert_overlap: Enables overlap between shared expert computation and the dispatcher. If not enabled, shared expert computation will be performed after routing experts. Only effective when moe_shared_expert_intermediate_size is set. Default is False.

  • moe_token_drop_policy: Options are ‘probs’ and ‘position’. Default is ‘probs’.

MLA Parameters

  • multi_latent_attention: Whether to use MLA. Default is False.

  • q_lora_rank: Low-rank representation rank value of the Query tensor. Default is None and will be automatically read from config.json.

  • kv_lora_rank: Low-rank representation rank value of the Key and Value tensors. Default is None and will be automatically read from config.json.

  • qk_head_dim: Dimension of the head in the QK projection. q_head_dim = qk_head_dim + qk_pos_emb_head_dim. Default is None and will be automatically read from config.json.

  • qk_pos_emb_head_dim: Dimension of the position embedding in the QK projection. Default is None and will be automatically read from config.json.

Tuner Parameters:

  • train_type: Options are 'lora' and 'full'. Default is 'full'.

  • 🔥freeze_llm: This parameter only takes effect for multimodal models and can be used in both full-parameter and LoRA training, but with different behaviors. In full-parameter training, setting freeze_llm to True will freeze the weights of the LLM component. In LoRA training with target_modules set to ‘all-linear’, setting freeze_llm to True will prevent LoRA modules from being added to the LLM component. The default value is False.

  • 🔥freeze_vit: This parameter only applies to multimodal models and can be used in both full-parameter and LoRA training, though with different effects. In full-parameter training, setting freeze_vit to True will freeze the weights of the ViT component. In LoRA training with target_modules set to ‘all-linear’, setting freeze_vit to True will prevent LoRA modules from being added to the ViT component. The default value is True.

    • Note: The term “ViT” here refers not only to the vision tower but also includes the audio tower.

  • 🔥freeze_aligner: This parameter is only effective for multimodal models and can be used in both full-parameter and LoRA training, with differing outcomes. In full-parameter training, setting freeze_aligner to True will freeze the weights of the aligner (also known as the projector) component. In LoRA training with target_modules set to ‘all-linear’, setting freeze_aligner to True will prevent LoRA modules from being added to the aligner component. The default value is True.

Full-parameter Training:

  • freeze_parameters: Prefixes of parameters to be frozen. Default is [].

  • freeze_parameters_regex: Regex expression for parameters to be frozen. Default is None.

  • freeze_parameters_ratio: The proportion of parameters to freeze from bottom to top. Default is 0. Setting this to 1 will freeze all parameters; you can set trainable parameters separately using trainable_parameters. This parameter is incompatible with PP (pipeline parallel) mode.

  • trainable_parameters: Prefixes of additional trainable parameters. Default is [].

  • trainable_parameters_regex: Regex expression to match additional trainable parameters. Default is None.

LoRA Training:

  • adapter_load: The path to the adapter weights for loading, used for resuming LoRA training from a checkpoint. The default is None. The method for resuming LoRA training from a checkpoint is the same as for full-parameter training. Please pay attention to the meaning of the --finetune parameter.

  • 🔥target_modules: Specifies the suffixes of modules to apply LoRA to. For example, you can set it as --target_modules linear_qkv linear_proj. The default is ['all-linear'], which means all linear layers will be set as target modules.

    • Note: If you want to set all router layers as target modules, you can specify --target_modules all-router .... For example: --target_modules all-router all-linear.

  • 🔥target_regex: Regex expression to specify LoRA modules. Default is None. If this value is provided, the target_modules parameter will be ignored.

  • 🔥modules_to_save: After attaching a tuner, explicitly specifies additional original model modules to participate in training and storage. The default is [].

  • 🔥lora_rank: Default is 8.

  • 🔥lora_alpha: Default is 32.

  • lora_dropout: Default is 0.05.

  • lora_bias: Default is 'none'. Available options: 'none', 'all'. If you want all biases to be set as trainable, set this to 'all'.

  • use_rslora: Default is False. Whether to use RS-LoRA.

DPO Parameters

  • ref_load: The path to load the reference model. Defaults to None, which means it will be set to load.

  • ref_adapter_load: The path to load the ref_adapter weights, default is None. If you want to use LoRA weights generated from SFT for DPO, please use “ms-swift>=3.8” and set --adapter_load sft_ckpt --ref_adapter_load sft_ckpt --finetune true during training. For resuming training from a checkpoint in this scenario, set --adapter_load rlhf_ckpt --ref_adapter_load sft_ckpt --finetune false.

  • beta: Has the same meaning as in TRL. It controls the degree of deviation from the reference model. A higher beta value indicates less deviation from the reference model. For the IPO loss function (loss_type="ipo"), beta is the regularization parameter as mentioned in the paper. Default is 0.1.

  • rpo_alpha: A parameter from the RPO paper that controls the weight of the NLL term (i.e., the SFT loss) in the loss function, where loss = dpo_loss + rpo_alpha * sft_loss. The paper recommends setting it to 1.. The default value is None, meaning the SFT loss is not included by default.

    • Note: In “ms-swift<3.8”, the default value was 1.. Starting from “ms-swift>=3.8”, the default has been changed to None.

  • reference_free: Whether to ignore the provided reference model and implicitly use a reference model that assigns equal probability to all responses. Default is False.

  • label_smoothing: Default is 0.

  • f_divergence_type: Default is reverse_kl. See the TRL documentation for possible values.

  • loss_type: Default is 'sigmoid'. See the TRL documentation for possible values.

Training Parameters

Megatron training parameters are inherited from Megatron parameters and basic parameters (shared with ms-swift, such as dataset, template, etc.). For details on basic parameters, please refer to here. Additionally, the following parameters are included:

  • add_version: Adds a directory <version>-<timestamp> to save to prevent overwriting weights, default is True.

  • padding_free: Flattens the data in a batch to avoid padding, thereby reducing memory usage and accelerating training. Default is True.

    • If you wish to customize the attention_mask, you can set --padding_free false.

    • Note: The Megatron-SWIFT training feature prioritizes support for the padding-free format. Unless under special circumstances, please do not modify this value.

  • mlp_padding_free: The default is False. This is used for applying padding-free optimization to the MLP when padding_free is set to false. It allows for improved training speed and reduced memory usage while customizing the attention_mask.

  • vit_gradient_checkpointing: Whether to enable gradient checkpointing for the ViT part during multimodal model training. Default: True.

  • gradient_checkpointing_kwargs: Arguments passed to torch.utils.checkpoint. For example: set --gradient_checkpointing_kwargs '{"use_reentrant": false}'. Default: None.

  • 🔥packing: Whether to use sequence packing, defaults to False. Currently supports CPT/SFT/DPO.

  • packing_length: the length to use for packing. Defaults to None, in which case it is set to max_length.

  • streaming: Stream data loading and processing, default is False.

    • Note: Since the length of a streaming dataset cannot be determined, the --train_iters parameter must be set. Also set the max_epochs parameter to ensure training exits after the specified number of epochs, and to validate and save the model weights accordingly.

    • Note: Streaming datasets can skip preprocessing wait time by overlapping preprocessing with training. Preprocessing for streaming datasets is performed only on rank 0 and then synchronized to other processes via data distribution. This is generally less efficient than the data sharding approach used in non-streaming datasets. When the training world_size is large, preprocessing and data distribution can become a training bottleneck.

  • lazy_tokenize: Default is False. If this parameter is set to False, all dataset samples are tokenized before training (this avoids errors during training); if set to True, tokenization occurs during training (this saves memory).

  • cached_dataset: Use a cached dataset (generated with swift export --to_cached_dataset true ...) during training to avoid GPU time spent on tokenizing large datasets. Default: [].

    • Note: cached_dataset supports --packing but does not support --lazy_tokenize or --streaming.

  • max_epochs: Forces the training to exit after reaching max_epochs, and performs validation and saving of the model weights. This parameter is especially useful when using a streaming dataset. Default is None.

    • Note: If you use a non-streaming dataset, this parameter will automatically calculate train_iters for you, so there is no need to pass train_iters manually.

  • enable_dft_loss: Whether to use DFT (Dynamic Fine-Tuning) loss in SFT training, default is False.

  • enable_channel_loss: Enable channel loss, default is false. You need to prepare a “channel” field in your dataset; ms-swift will compute and aggregate the loss grouped by this field. For dataset format, please refer to channel loss.

RLHF Parameters

In addition to inheriting the training parameters, the following parameters are also supported:

  • rlhf_type: Default is ‘dpo’. Currently, only ‘dpo’ is available.

  • loss_scale: Overrides the loss_scale in basic parameters. Default is ‘last_round’.

  • calculate_per_token_loss: Overrides the Megatron parameter. Default is False.