"--local_path",type=str,required=True,help="Local work path")
parser.add_argument(
"--local_model_name",type=str,required=True,help="Local model name")
parser.add_argument(
"--local_timestamp_file",
type=str,
default='fluid_time_file',
help="Local timestamp file name(fluid_time_file in model file)")
help="The timestamp file used locally for hot loading, The file is considered to be placed in the `local_path/local_model_name` folder."
)
parser.add_argument(
"--local_tmp_path",
type=str,
default='_serving_monitor_tmp',
help="Local tmp path")
help="The path of the folder where temporary files are stored locally. If it does not exist, it will be created automatically"
)
parser.add_argument(
"--unpacked_filename",
type=str,
...
...
@@ -423,29 +429,43 @@ def parse_args():
help="If the model of the remote production is a packaged file, the unpacked file name should be set. Currently, only tar packaging format is supported."