@@ -265,3 +265,76 @@ def get_snr_range(self) -> tuple:
265265 def get_noise_variance_range (self ) -> tuple :
266266 """Get noise variance range as tuple."""
267267 return (self .noise_variance_min , self .noise_variance_max )
268+
269+ # Override inherited methods with problematic docstrings to provide clean documentation
270+ def set_dataloader (self , * args , ** kwargs ):
271+ """Set dataloader configuration.
272+
273+ This method configures dataloader settings for training. Inherited from
274+ transformers.TrainingArguments with simplified documentation.
275+ """
276+ return super ().set_dataloader (* args , ** kwargs )
277+
278+ def set_evaluate (self , * args , ** kwargs ):
279+ """Set evaluation configuration.
280+
281+ This method configures evaluation settings for training. Inherited from
282+ transformers.TrainingArguments with simplified documentation.
283+ """
284+ return super ().set_evaluate (* args , ** kwargs )
285+
286+ def set_logging (self , * args , ** kwargs ):
287+ """Set logging configuration.
288+
289+ This method configures logging settings for training. Inherited from
290+ transformers.TrainingArguments with simplified documentation.
291+ """
292+ return super ().set_logging (* args , ** kwargs )
293+
294+ def set_lr_scheduler (self , * args , ** kwargs ):
295+ """Set learning rate scheduler configuration.
296+
297+ This method configures learning rate scheduler settings. Inherited from
298+ transformers.TrainingArguments with simplified documentation.
299+ """
300+ return super ().set_lr_scheduler (* args , ** kwargs )
301+
302+ def set_optimizer (self , * args , ** kwargs ):
303+ """Set optimizer configuration.
304+
305+ This method configures optimizer settings for training. Inherited from
306+ transformers.TrainingArguments with simplified documentation.
307+ """
308+ return super ().set_optimizer (* args , ** kwargs )
309+
310+ def set_push_to_hub (self , * args , ** kwargs ):
311+ """Set push to hub configuration.
312+
313+ This method configures settings for pushing models to Hugging Face Hub. Inherited from
314+ transformers.TrainingArguments with simplified documentation.
315+ """
316+ return super ().set_push_to_hub (* args , ** kwargs )
317+
318+ def set_save (self , * args , ** kwargs ):
319+ """Set save configuration.
320+
321+ This method configures model saving settings. Inherited from transformers.TrainingArguments
322+ with simplified documentation.
323+ """
324+ return super ().set_save (* args , ** kwargs )
325+
326+ def set_testing (self , * args , ** kwargs ):
327+ """Set testing configuration.
328+
329+ This method configures testing settings. Inherited from transformers.TrainingArguments with
330+ simplified documentation.
331+ """
332+ return super ().set_testing (* args , ** kwargs )
333+
334+ def set_training (self , * args , ** kwargs ):
335+ """Set training configuration.
336+
337+ This method configures training settings. Inherited from transformers.TrainingArguments
338+ with simplified documentation.
339+ """
340+ return super ().set_training (* args , ** kwargs )
0 commit comments