From b71cb2705c33f257c70b153e56bf01dfe19e4085 Mon Sep 17 00:00:00 2001 From: Daniel Han Date: Wed, 30 Apr 2025 00:10:39 -0700 Subject: [PATCH] Update synthetic.py --- unsloth/dataprep/synthetic.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/unsloth/dataprep/synthetic.py b/unsloth/dataprep/synthetic.py index a0733447da..ad03bc5523 100644 --- a/unsloth/dataprep/synthetic.py +++ b/unsloth/dataprep/synthetic.py @@ -74,10 +74,12 @@ def async_load_vllm( if which == "true": # Ignore --enforce-eager True subprocess_commands += ["--" + flag,] + elif which == "false": + # Ignore flag + pass else: subprocess_commands += ["--" + flag, which,] pass - print(subprocess_commands) vllm_process = subprocess.Popen( subprocess_commands, stdout = subprocess.PIPE,