gpt4 book ai didi

python - 没有名为图层的模块

转载 作者:行者123 更新时间:2023-11-28 18:24:26 26 4
gpt4 key购买 nike

我使用的是 tensorflow 1.0.0,我想访问 tensorflow.layers 模块。该模块似乎存在:

In [12]: dir(tensorflow.layers)
Out[12]:
['__builtins__',
'__doc__',
'__file__',
'__name__',
'__package__',
'_allowed_symbols',
'average_pooling1d',
'average_pooling2d',
'average_pooling3d',
'batch_normalization',
'conv1d',
'conv2d',
'conv2d_transpose',
'conv3d',
'dense',
'dropout',
'max_pooling1d',
'max_pooling2d',
'max_pooling3d',
'separable_conv2d']

但是当我尝试导入例如密集函数:

In [13]: from tensorflow.layers import dense
---------------------------------------------------------------------------
ImportError Traceback (most recent call last)
<ipython-input-13-e5b2c910300d> in <module>()
----> 1 from tensorflow.layers import dense

ImportError: No module named layers

为什么python访问不到模块?

最佳答案

您的安装或工作区有问题:

  • 确保您的 Python 路径中没有名为“tensorflow”的目录。
  • 再次安装官方 tensorflow 发行版 pip install —upgrade —ignore-installed tensorflow)
  • 确保您使用的是正确的 tensorflow 版本 print(tensorflow.__version__)

关于python - 没有名为图层的模块,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42442869/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com