From 340ffb4b8a8b19ee7bef730f1afb731ddb2a9dd0 Mon Sep 17 00:00:00 2001 From: Jonathans575 <1563710292@qq.com> Date: Tue, 21 Apr 2026 17:14:11 +0800 Subject: [PATCH] Set the default value of distributed_dataloader to true. --- paddleformers/trainer/training_args.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/paddleformers/trainer/training_args.py b/paddleformers/trainer/training_args.py index d3f00a61666..ff632b4e975 100644 --- a/paddleformers/trainer/training_args.py +++ b/paddleformers/trainer/training_args.py @@ -1046,7 +1046,7 @@ class TrainingArguments: metadata={"help": "enable framework timer, will output timeline information in logging and visualdl."}, ) distributed_dataloader: Optional[bool] = field( - default=False, metadata={"help": "Whether to use distributed dataloader."} + default=True, metadata={"help": "Whether to use distributed dataloader."} ) unified_checkpoint: Optional[bool] = field( default=False,