From dcae53a6a4319772f77aa9b01734d475b1a5e176 Mon Sep 17 00:00:00 2001 From: Sai-Suraj-27 Date: Tue, 6 Feb 2024 10:50:14 +0530 Subject: [PATCH] Fixed the documentation for logging_first_step by removing evaluate. --- src/transformers/training_args.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/transformers/training_args.py b/src/transformers/training_args.py index 6723e8221c9e9e..e14bbe59cd3aff 100644 --- a/src/transformers/training_args.py +++ b/src/transformers/training_args.py @@ -265,7 +265,7 @@ class TrainingArguments: - `"steps"`: Logging is done every `logging_steps`. logging_first_step (`bool`, *optional*, defaults to `False`): - Whether to log and evaluate the first `global_step` or not. + Whether to log the first `global_step` or not. logging_steps (`int` or `float`, *optional*, defaults to 500): Number of update steps between two logs if `logging_strategy="steps"`. Should be an integer or a float in range `[0,1)`. If smaller than 1, will be interpreted as ratio of total training steps.