From 7fa3f2e94a08f0762b4e900a52f7928b987bc8a4 Mon Sep 17 00:00:00 2001 From: allegroai Date: Fri, 15 Jul 2022 22:27:10 +0300 Subject: [PATCH] Fix --aux-config not working, issue #30 --- clearml_serving/__main__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clearml_serving/__main__.py b/clearml_serving/__main__.py index 86a9ff6..88c027b 100644 --- a/clearml_serving/__main__.py +++ b/clearml_serving/__main__.py @@ -471,7 +471,7 @@ def cli(): help='Optional: Specify the model layer pulling results from, examples: layer_99' ) parser_model_monitor.add_argument( - '--aux-config', type=int, nargs='+', + '--aux-config', nargs='+', help='Specify additional engine specific auxiliary configuration in the form of key=value. ' 'Example: platform=onnxruntime_onnx response_cache.enable=true max_batch_size=8 ' 'Notice: you can also pass full configuration file (e.g. Triton "config.pbtxt")'