Hung Quang Dang
05/22/2024, 9:15 AMdeploy_process = await asyncio.create_subprocess_exec(
"prefect",
"deploy",
"-n",
f"{mlflow_name}",
stdout=asyncio.subprocess.PIPE,
stderr=asyncio.subprocess.PIPE,
)
run_process = await asyncio.create_subprocess_exec(
"prefect",
"deployment",
"run",
f"sklearn-flow/{mlflow_name}",
stdout=asyncio.subprocess.PIPE,
stderr=asyncio.subprocess.PIPE,
)