Update synthetic.py
This commit is contained in:
parent
5ede267773
commit
0784cd272d
1 changed files with 1 additions and 3 deletions
|
|
@ -85,7 +85,7 @@ class SyntheticDataKit:
|
|||
]
|
||||
for key, value in engine_args.items():
|
||||
flag = key.replace("_", "-")
|
||||
which = str(value).lower().replace("torch.", "")
|
||||
which = str(value).replace("torch.", "")
|
||||
if which == "true":
|
||||
# Ignore --enforce-eager True
|
||||
subprocess_commands += ["--" + flag,]
|
||||
|
|
@ -95,8 +95,6 @@ class SyntheticDataKit:
|
|||
else:
|
||||
subprocess_commands += ["--" + flag, which,]
|
||||
pass
|
||||
print(" ".join(subprocess_commands))
|
||||
raise
|
||||
vllm_process = subprocess.Popen(
|
||||
subprocess_commands,
|
||||
stdout = subprocess.PIPE,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue