Darwin 尚不支持 Tensorflow 的 MKL 构建/配置
Darwin not supported yet for MKL build / configure for Tensorflow
我正在尝试在我的 iOS 应用程序中使用 tensorflow-1.3.0。我正在尝试这个 link -[http://jeffxtang.github.io/deep/learning,/tensorflow,/mobile,/ai/2016/09/23/mobile-tensorflow.html][1]
我正在尝试本教程中的第 4 步,我需要 运行 ./configure 脚本才能 运行 bazel 构建 运行 重新训练脚本:
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
问题:达尔文还不受支持
这个问题的解决方案是什么?请帮帮我。我找了好久
要解决此问题,请跳过此 link http://jeffxtang.github.io/deep/learning,/tensorflow,/mobile,/ai/2016/09/23/mobile-tensorflow.html 中的第 4 步。我只是分别按照 tutorial.This 中的第 1、2、3 和 5 步解决了我的问题,并且终于我能够 运行 我自己训练的模型到我的 iOS 应用程序并获得成功的预测结果。
我正在尝试在我的 iOS 应用程序中使用 tensorflow-1.3.0。我正在尝试这个 link -[http://jeffxtang.github.io/deep/learning,/tensorflow,/mobile,/ai/2016/09/23/mobile-tensorflow.html][1]
我正在尝试本教程中的第 4 步,我需要 运行 ./configure 脚本才能 运行 bazel 构建 运行 重新训练脚本:
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
问题:达尔文还不受支持
这个问题的解决方案是什么?请帮帮我。我找了好久
要解决此问题,请跳过此 link http://jeffxtang.github.io/deep/learning,/tensorflow,/mobile,/ai/2016/09/23/mobile-tensorflow.html 中的第 4 步。我只是分别按照 tutorial.This 中的第 1、2、3 和 5 步解决了我的问题,并且终于我能够 运行 我自己训练的模型到我的 iOS 应用程序并获得成功的预测结果。