Make single model mode the default, update readme

This commit is contained in:
Andreas Peldszus
2024-06-05 09:44:04 +02:00
parent 1ac7a278bb
commit ab17c4dbc6
2 changed files with 8 additions and 11 deletions
+3 -2
View File
@@ -26,8 +26,9 @@ if __name__ == "__main__":
default=1,
help="Number of threads to use for OpenMP")
parser.add_argument('--single_model', '-sm',
action="store_true",
help='Set to true if only one (custom) model instance should be served.')
type=bool,
default=True,
help='Set to false if every connection should instantiate its own model. Only relevant for custom model, passed using -trt or -fw.')
args = parser.parse_args()
if args.backend == "tensorrt":