Changes between Version 2 and Version 3 of ai/TensorFlow
- Timestamp:
- 2016/07/15 18:11:17 (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
ai/TensorFlow
v2 v3 9 9 # yum install epel-release 10 10 # yum install python34 python34-devel 11 # yum install http://dl.marmotte.net/rpms/redhat/el7/x86_64/protobuf-3.0.0-0.1.el7.beta2/protobuf-3.0.0-0.1.el7.beta2.x86_64.rpm\12 http://dl.marmotte.net/rpms/redhat/el7/x86_64/protobuf-3.0.0-0.1.el7.beta2/protobuf-compiler-3.0.0-0.1.el7.beta2.x86_64.rpm13 11 # curl -kL https://bootstrap.pypa.io/get-pip.py| python3 14 12 # export TF_BINARY_URL=https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.9.0-cp34-cp34m-linux_x86_64.whl … … 19 17 20 18 そのまま利用すると、モデルをエクスポートしようとすると、manifest_pb2.pyがないとエラーになります。 21 manifest_pb2.pyをprotocで作成する必要があります。 19 manifest_pb2.pyをprotocで作成する必要があります。CentOS/EPELのprotocはバージョン2系ですが、 20 TensorFlowは3系を利用しているので、どっかからバージョン3系のprotocをインストールする必要があります。 22 21 23 22 {{{ 23 # yum install http://dl.marmotte.net/rpms/redhat/el7/x86_64/protobuf-3.0.0-0.1.el7.beta2/protobuf-3.0.0-0.1.el7.beta2.x86_64.rpm\ 24 http://dl.marmotte.net/rpms/redhat/el7/x86_64/protobuf-3.0.0-0.1.el7.beta2/protobuf-compiler-3.0.0-0.1.el7.beta2.x86_64.rpm 24 25 # curl -O https://raw.githubusercontent.com/tensorflow/tensorflow/master/tensorflow/contrib/session_bundle/manifest.proto 25 26 # protoc --python_out=/usr/lib/python3.4/site-packages/tensorflow/contrib/session_bundle manifest.proto