saved_model
Last updated
Last updated
### 把 checkpoint 转成 saved_model [Serving Inception Model with TensorFlow Serving and Kubernetes] 可以用链接中写的脚本, 或者直接 docker run ```bash docker run --rm -it --network=host -v D:\models\inception-v3\:/models/inception registry.docker-cn.com/tensorflow/serving:nightly-devel bash # in docker container bazel build -c opt \ tensorflow_serving/example:inception_saved_model bazel-bin/tensorflow_serving/example/inception_saved_model \ --checkpoint_dir=inception-v3 --output_dir=models/inception ```
[Serving Inception Model with TensorFlow Serving and Kubernetes]: