docker + tensorflow serving 踩坑记录

1 docker pull了 tensorflow/tensorflow,此image包含了jupyter notebook + tensorflow后,如果在运行客户端的时候,出现:

grpc.framework.interfaces.face.face.AbortionError: AbortionError(code=StatusCode.UNAVAILABLE, details="Endpoint read failed")

解决的办法,创建container的时候,添加-p 参数

docker run -it --name tfn -p 8888:8888 tensorflow/tensorflow

猜你喜欢

转载自blog.csdn.net/lccever/article/details/78687451