From 23d88dcfb92d89c43bb824e6f695af8e6dbe4717 Mon Sep 17 00:00:00 2001 From: Zhizhou Zhong Date: Thu, 3 Apr 2025 11:09:09 +0800 Subject: [PATCH] fix: bug in infer script (#290) The fix proposed by @Gaozhongpai. Thank you @Gaozhongpai. --- inference.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/inference.sh b/inference.sh index 355cfdd..43cccd9 100644 --- a/inference.sh +++ b/inference.sh @@ -59,14 +59,14 @@ cmd_args="--inference_config $config_path \ --result_dir $result_dir \ --unet_model_path $unet_model_path \ --unet_config $unet_config \ - --version $version_arg \ + --version $version_ar" # Add realtime-specific arguments if in realtime mode if [ "$mode" = "realtime" ]; then cmd_args="$cmd_args \ --fps 25 \ - --version $version_arg \ + --version $version_arg" fi # Run inference -python3 -m $script_name $cmd_args \ No newline at end of file +python3 -m $script_name $cmd_args