Changes between Version 1 and Version 2 of ai/TensorFlow


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

--

Legend:

Unmodified
Added
Removed
Modified
  • ai/TensorFlow

    v1 v2  
    11= TensorFlow 
    22 
    3 CentOS7でTensorFlowを動かすのに苦労したので、そのメモです。 
     3CentOS7でTensorFlowを動かすのに苦労したので、そのメモです。折角なので、Python3で動かしてみました。 
    44素直にUbuntuを使っといた方が幸せになるかもです。 
    55 
    6 ## TensorFlowインストール 
     6== TensorFlowインストール 
    77 
    88{{{ 
     
    1616}}} 
    1717 
    18 ## manifest_pb2.py作成 
     18== manifest_pb2.py作成 
    1919 
    20 そのまま利用すると、exporterでexportしようとすると、manifest_pb2.pyがないとエラーになります。 
    21 manifest_pb2.pyを作成する必要があります。 
     20そのまま利用すると、モデルをエクスポートしようとすると、manifest_pb2.pyがないとエラーになります。 
     21manifest_pb2.pyをprotocで作成する必要があります。 
    2222 
    2323{{{ 
     
    2525# protoc --python_out=/usr/lib/python3.4/site-packages/tensorflow/contrib/session_bundle manifest.proto 
    2626}}} 
     27 
     28あとは、その辺のサンプルとかで遊んでください。