在Windows上运行TensorFlow演示模型

时间:2017-03-20 15:32:11

标签: tensorflow deep-learning

我已经使用

在Windows 7上安装了tensorflow
C:\> pip3 install --upgrade tensorflow

然后检查它是否正常工作,我做了:

import tensorflow as tf

hello = tf.constant('Hello, TensorFlow!')
sess = tf.Session()
print(sess.run(hello))

打印出“Hello,TensorFlow!”

所以一切看起来都很好。

但现在我想找到  “tensorflow /模型/”

但是没有这样的目录。我的机器上的tensorflow目录的内容如下图所示 Contents of tensorflow directory are presented in this image

我不知道如何找到或安装tensorflow / models /,以便我可以使用已经训练过的模型来解决我的问题。

1 个答案:

答案 0 :(得分:1)

您需要克隆您提到的路径的张量流模型

git clone https://github.com/tensorflow/models.git

找到:tutorials / image / imagenet / classify_image.py