Changes between Version 1 and Version 2 of ai/TensorFlow
- Timestamp:
- 2016/07/15 18:10:10 (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
ai/TensorFlow
v1 v2 1 1 = TensorFlow 2 2 3 CentOS7でTensorFlowを動かすのに苦労したので、そのメモです。 3 CentOS7でTensorFlowを動かすのに苦労したので、そのメモです。折角なので、Python3で動かしてみました。 4 4 素直にUbuntuを使っといた方が幸せになるかもです。 5 5 6 ##TensorFlowインストール6 == TensorFlowインストール 7 7 8 8 {{{ … … 16 16 }}} 17 17 18 ##manifest_pb2.py作成18 == manifest_pb2.py作成 19 19 20 そのまま利用すると、 exporterでexportしようとすると、manifest_pb2.pyがないとエラーになります。21 manifest_pb2.pyを 作成する必要があります。20 そのまま利用すると、モデルをエクスポートしようとすると、manifest_pb2.pyがないとエラーになります。 21 manifest_pb2.pyをprotocで作成する必要があります。 22 22 23 23 {{{ … … 25 25 # protoc --python_out=/usr/lib/python3.4/site-packages/tensorflow/contrib/session_bundle manifest.proto 26 26 }}} 27 28 あとは、その辺のサンプルとかで遊んでください。