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
本文介绍了一种解决在使用Docker运行包含Jupyter Notebook和TensorFlow的镜像时遇到的gRPC错误的方法。通过在启动容器时指定端口映射参数-p 8888:8888,可以有效解决Endpoint read failed的问题。
2115

被折叠的 条评论
为什么被折叠?



