TensorFlow Serving 01 설치
1557 단어 Tensorflow
TensorFlow Serving 을 컴 파일 하고 사용 하려 면 먼저 선 결 조건 을 해결 해 야 합 니 다.
Bazel
gRPC
원본 코드 에서 설치
Clone the TensorFlow Serving repository
git clone --recurse-submodules https://github.com/tensorflow/serving
cd serving
Install prerequisites
cd tensorflow
./configure
cd ..
Build
To build the entire tree, execute:
bazel build tensorflow_serving/...
Binaries are placed in the bazel-bin directory, and can be run using a command like:
bazel-bin/tensorflow_serving/model_servers/tensorflow_model_server
To test your installation, execute:
bazel test tensorflow_serving/...
Continuous integration build
저 희 는 TensorFlow ci 를 사용 합 니 다.build 인 프 라 의 지속 적 인 통합 구축 은 docker 를 사용 하 는 간단 한 개발 을 제공 합 니 다.당신 에 게 필요 한 것 은 git 와 docker 입 니 다.모든 의존 항목 을 수 동 으로 설치 할 필요 가 없습니다.
git clone --recursive https://github.com/tensorflow/serving
cd serving
CI_TENSORFLOW_SUBMODULE_PATH=tensorflow tensorflow/tensorflow/tools/ci_build/ci_build.sh CPU bazel test //tensorflow_serving/...
메모:서비스 디 렉 터 리 가 용기 에 비 칩 니 다.Docker 용기 밖에서 개발 할 수 있 습 니 다.(가장 좋아 하 는 편집기 에서)이 빌 드 를 실행 할 때 변경 사항 에 따라 구 축 됩 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
[번역] TF-api(1)tf.nn.max_poolArgs: value: A 4-D Tensor with shape [batch, height, width, channels] and type tf.float32 . value는 4D의 tensor입니다. maxpoo...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.