iOSアプリケーションでtensorflow-1.3.0を使用しようとしています。私は、このリンクをしようとしています - [http://jeffxtang.github.io/deep/learning,/tensorflow,/mobile,/ai/2016/09/23/mobile-tensorflow.html][1]DarwinはTensorflowのMKLビルド/コンフィグレーションでまだサポートされていません
を私は私がリトレインスクリプトを実行するためにbazelビルドを実行する前に./configureスクリプトを実行する必要があり、このチュートリアルからステップ4をしようとしています:
bazel build tensorflow/examples/image_retraining:retrain
bazel-bin/tensorflow/examples/image_retraining/retrain \
--model_dir=/tf_files/inception-v3 \
--output_graph=/tf_files/retrained_models/dog_retrained.pb \
--output_labels=/tf_files/retrained_models/dog_retrained_labels.txt \
--image_dir ~/Downloads/dog_images \
--bottleneck_dir=/tf_files/dogs_bottleneck
しかし、 ./configureをステップは、次のメッセージで失敗します。
MobioApps-Mac-mini:tensorflow-1.3.0 mobioapp$ ./configure
You have bazel 0.5.3-homebrew installed.
Please specify the location of python. [Default is /Users/mobioapp/anaconda/bin/python]: /Users/mobioapp/anaconda/bin/python
Found possible Python library paths:
/Users/mobioapp/anaconda/lib/python2.7/site-packages
Please input the desired Python library path to use. Default is [/Users/mobioapp/anaconda/lib/python2.7/site-packages]
/Users/mobioapp/anaconda/lib/python2.7/site-packages
Do you wish to build TensorFlow with MKL support? [y/N] y
MKL support will be enabled for TensorFlow
Do you wish to download MKL LIB from the web? [Y/n] Y
Darwin is unsupported yet
問題:ダーウィンはまだサポートされていない
この問題の解決策は何ですか?私を助けてください。私はそれのために長い時間を探しています。
これは作業中です! https://github.com/tensorflow/tensorflow/issues/10685 –