Update rl_replacements.py

This commit is contained in:
Daniel Han 2025-02-12 16:19:34 -08:00
commit fb5ec5992c

View file

@ -142,7 +142,7 @@ def grpo_trainer__move_model_to_vllm(function_name, function):
if function_name != "_move_model_to_vllm": return function
# .*? matches first match. .+? matches final match.
function = "def _move_model_to_vllm(*args, **kwargs): return None\n"
function = "def _move_model_to_vllm(self, *args, **kwargs): return None\n"
return function.find("def") * " " + function
pass
RL_FUNCTIONS["grpo_trainer"].append(grpo_trainer__move_model_to_vllm)