From cd4778f78f3a72dc590c8543cc97d3c370fb7292 Mon Sep 17 00:00:00 2001 From: Daniel Han Date: Tue, 11 Feb 2025 03:05:44 -0800 Subject: [PATCH] Update rl.py --- unsloth/models/rl.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/unsloth/models/rl.py b/unsloth/models/rl.py index b593816409..7e32823202 100644 --- a/unsloth/models/rl.py +++ b/unsloth/models/rl.py @@ -86,11 +86,11 @@ class Unsloth{RLConfig_name}({RLConfig_name}): ) def __init__({RLConfig_arguments}, sampling_params = None, - *args, **kwargs, + **kwargs, ): {RLConfig_extra_args} super().__init__({RLConfig_call_args}, - *args, **kwargs) + **kwargs) pass {RLTrainer_extras} @@ -100,12 +100,12 @@ class Unsloth{RLTrainer_name}(_Unsloth{RLTrainer_name}): {__RLTrainer_doc__} """ def __init__({RLTrainer_arguments}, - *args, **kwargs, + **kwargs, ): if args is None: args = Unsloth{RLConfig_name}() {RLTrainer_extra_args} super().__init__({RLTrainer_call_args}, - *args, **kwargs) + **kwargs) pass '''