Changes between Version 2 and Version 3 of ai/TensorFlow


Ignore:
Timestamp:
2016/07/15 18:11:17 (8 years ago)
Author:
yuna
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ai/TensorFlow

    v2 v3  
    99# yum install epel-release 
    1010# 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.rpm 
    1311# curl -kL https://bootstrap.pypa.io/get-pip.py| python3 
    1412# export TF_BINARY_URL=https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.9.0-cp34-cp34m-linux_x86_64.whl 
     
    1917 
    2018そのまま利用すると、モデルをエクスポートしようとすると、manifest_pb2.pyがないとエラーになります。 
    21 manifest_pb2.pyをprotocで作成する必要があります。 
     19manifest_pb2.pyをprotocで作成する必要があります。CentOS/EPELのprotocはバージョン2系ですが、 
     20TensorFlowは3系を利用しているので、どっかからバージョン3系のprotocをインストールする必要があります。 
    2221 
    2322{{{ 
     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 
    2425# curl -O https://raw.githubusercontent.com/tensorflow/tensorflow/master/tensorflow/contrib/session_bundle/manifest.proto 
    2526# protoc --python_out=/usr/lib/python3.4/site-packages/tensorflow/contrib/session_bundle manifest.proto