diff --git a/unsloth/dataprep/synthetic.py b/unsloth/dataprep/synthetic.py index 47bbf860e0..cb79b89dc1 100644 --- a/unsloth/dataprep/synthetic.py +++ b/unsloth/dataprep/synthetic.py @@ -86,10 +86,10 @@ class SyntheticDataKit: for key, value in engine_args.items(): flag = key.replace("_", "-") which = str(value).replace("torch.", "") - if which == "true": + if which == "True": # Ignore --enforce-eager True subprocess_commands += ["--" + flag,] - elif which == "false": + elif which == "False": # Ignore flag pass else: