Python 在windows上通过Docker使用tensorflow时,tensorflow的根目录安装在哪里?

Python 在windows上通过Docker使用tensorflow时,tensorflow的根目录安装在哪里?,python,tensorflow,deep-learning,Python,Tensorflow,Deep Learning,在docker中使用TensorFlow时,我需要找出TensorFlow的确切安装位置,因为我想使用Inception-V3图像分类器对我自己的图像进行分类。然而,网站上的教程假设我是使用pip安装的,因此我只能使用默认图像。谢谢 通过在windows命令行或powershell中键入pip show tensorflow可以找到有关tensorflow的详细信息 对我来说,它显示了以下细节: Name: tensorflow Version: 0.12.1 Summary: Tenso

在docker中使用TensorFlow时,我需要找出TensorFlow的确切安装位置,因为我想使用Inception-V3图像分类器对我自己的图像进行分类。然而,网站上的教程假设我是使用pip安装的,因此我只能使用默认图像。谢谢

通过在windows命令行或powershell中键入
pip show tensorflow
可以找到有关tensorflow的详细信息

对我来说,它显示了以下细节:

Name: tensorflow

Version: 0.12.1 

Summary: TensorFlow helps the tensors flow 

Home-page: http://tensorflow.org/ 

Author: Google Inc.    

Author-email: opensource@google.com License: Apache 2.0 

Location:    c:\program files\anaconda3\lib\site-packages 

Requires: protobuf,    numpy, six, wheel

通过在windows命令行或powershell中键入
pip show tensorflow
,可以找到有关tensorflow的详细信息

对我来说,它显示了以下细节:

Name: tensorflow

Version: 0.12.1 

Summary: TensorFlow helps the tensors flow 

Home-page: http://tensorflow.org/ 

Author: Google Inc.    

Author-email: opensource@google.com License: Apache 2.0 

Location:    c:\program files\anaconda3\lib\site-packages 

Requires: protobuf,    numpy, six, wheel

我不太确定问题是什么。你能用这两行找出答案吗?导入tensorflow打印tensorflow。\文件\您当前是否能够使用Inception分类器对默认图像进行分类?您可以修改文件路径以重定向到您自己的图像吗?基本上,我想问的是,当通过docker安装而不是通过pip安装时,如何使用Inception V3来识别我自己的图像。我还没有找到任何教程。我不确定问题是什么。你能用这两行找出答案吗?导入tensorflow打印tensorflow。\文件\您当前是否能够使用Inception分类器对默认图像进行分类?您可以修改文件路径以重定向到您自己的图像吗?基本上,我想问的是,当通过docker安装而不是通过pip安装时,如何使用Inception V3来识别我自己的图像。我还没有找到任何教程。