Skip to content

Commit

Permalink
object_detection: fix typo error in tf-serving.libsonnet (kubeflow#618)
Browse files Browse the repository at this point in the history
modified tf-serving.libsonnet in object_detection example to fix the error of
"FileSystemStoragePathSource encountered a file-system access error:
Could not find base path /models/model for servable model"

Change-Id: I946a0a7fbb6c80992d66fe003ca90b1c21c67cfc
Signed-off-by: Henry Wang <henry.wang@arm.com>
  • Loading branch information
MrXinWang authored and k8s-ci-robot committed Aug 15, 2019
1 parent ef94845 commit 2acf34f
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -119,8 +119,10 @@
name: $.params.name,
image: $.params.modelServerImage,
imagePullPolicy: "IfNotPresent",
args: [
command: [
"/usr/bin/tensorflow_model_server",
],
args: [
"--port=9000",
"--model_name=" + $.params.modelName,
"--model_base_path=" + $.params.modelPath,
Expand Down

0 comments on commit 2acf34f

Please sign in to comment.