From c76265efba3e3cfd5994c46813b8e867dc800d84 Mon Sep 17 00:00:00 2001 From: Saif Ahmed Date: Wed, 22 Apr 2020 07:18:52 -0400 Subject: [PATCH] Fixed type on --model-store location parameter on model serving instructions --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b2c997d3a5..fd72d0f3a4 100644 --- a/README.md +++ b/README.md @@ -140,7 +140,7 @@ For more information about the model archiver, see [Torch Model archiver for Tor After you archive and store the model, use the `torchserve` command to serve the model. ```bash -torchserve --start --model-store model_store --models ~/model_store/densenet161=densenet161.mar +torchserve --start --model-store ~/model_store --models ~/model_store/densenet161=densenet161.mar ``` After you execute the `torchserve` command above, TorchServe runs on your host, listening for inference requests.