- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
当我尝试在 Jupyter notebook 中导入 Keras.layers 时,如下所示,我遇到了这个错误。
# Basic Imports
import numpy as np
import matplotlib.pyplot as plt
from glob import glob
from PIL import Image
# Imports for Building CNN
from tensorflow import keras
from keras.layers import Input, Lambda, Dense, Flatten
from keras.models import Model
from keras.applications.vgg16 import VGG16
from keras.applications.vgg16 import preprocess_input
from keras.preprocessing import image
from keras.preprocessing.image import ImageDataGenerator
from keras.models import Sequential, load_model
from tensorflow.keras.preprocessing.image import load_img
# Ignore Warnings
import warnings
warnings.filterwarnings("ignore")
AttributeError: module 'tensorflow.compat.v2.internal' has no attribute 'dispatch'
我从这个错误提要中得到了这个错误:
> ---------------------------------------------------------------------------
> AttributeError Traceback (most recent call last)
> Input In [1], in <cell line: 9>()
> 7 # Imports for Building CNN
> 8 from tensorflow import keras
> ----> 9 from keras.layers import Input, Lambda, Dense, Flatten
> 10 from keras.models import Model
> 11 from keras.applications.vgg16 import VGG16
>
> File D:\Black\miniconda3\envs\tensorflow\lib\site-packages\keras\__init__.py:20,
> in <module>
> 1 # Copyright 2015 The TensorFlow Authors. All Rights Reserved.
> 2 #
> 3 # Licensed under the Apache License, Version 2.0 (the "License");
> (...)
> 13 # limitations under the License.
> 14 # ==============================================================================
> 15 """Implementation of the Keras API, the high-level API of TensorFlow.
> 16
> 17 Detailed documentation and user guides are available at
> 18 [keras.io](https://keras.io).
> 19 """
> ---> 20 from keras import distribute
> 21 from keras import models
> 22 from keras.engine.input_layer import Input
>
> File D:\Black\miniconda3\envs\tensorflow\lib\site-packages\keras\distribute\__init__.py:18,
> in <module>
> 1 # Copyright 2019 The TensorFlow Authors. All Rights Reserved.
> 2 #
> 3 # Licensed under the Apache License, Version 2.0 (the "License");
> (...)
> 13 # limitations under the License.
> 14 # ==============================================================================
> 15 """Keras' Distribution Strategy library."""
> ---> 18 from keras.distribute import sidecar_evaluator
>
> File D:\Black\miniconda3\envs\tensorflow\lib\site-packages\keras\distribute\sidecar_evaluator.py:22,
> in <module>
> 20 from tensorflow.python.platform import tf_logging as logging
> 21 from tensorflow.python.util import deprecation
> ---> 22 from keras.optimizers.optimizer_experimental import (
> 23 optimizer as optimizer_experimental,
> 24 )
> 25 from tensorflow.python.util.tf_export import keras_export
> 27 _PRINT_EVAL_STEP_EVERY_SEC = 60.0
>
> File D:\Black\miniconda3\envs\tensorflow\lib\site-packages\keras\optimizers\__init__.py:25,
> in <module>
> 22 import tensorflow.compat.v2 as tf
> 24 # Imports needed for deserialization.
> ---> 25 from keras import backend
> 26 from keras.optimizers.legacy import adadelta as adadelta_legacy
> 27 from keras.optimizers.legacy import adagrad as adagrad_legacy
>
> File D:\Black\miniconda3\envs\tensorflow\lib\site-packages\keras\backend.py:32,
> in <module>
> 29 import numpy as np
> 30 import tensorflow.compat.v2 as tf
> ---> 32 from keras import backend_config
> 33 from keras.distribute import distribute_coordinator_utils as dc
> 34 from keras.engine import keras_tensor
>
> File D:\Black\miniconda3\envs\tensorflow\lib\site-packages\keras\backend_config.py:33,
> in <module>
> 28 # Default image data format, one of "channels_last", "channels_first".
> 29 _IMAGE_DATA_FORMAT = "channels_last"
> 32 @keras_export("keras.backend.epsilon")
> ---> 33 @tf.__internal__.dispatch.add_dispatch_support
> 34 def epsilon():
> 35 """Returns the value of the fuzz factor used in numeric expressions.
> 36
> 37 Returns:
> (...)
> 42 1e-07
> 43 """
> 44 return _EPSILON
>
> AttributeError: module 'tensorflow.compat.v2.__internal__' has no attribute 'dispatch'
我对为什么会收到此错误感到困惑。我只想导入它以便运行我的代码。
最佳答案
这为我解决了(来源:https://www.cnblogs.com/wwj321/p/16832760.html)[必须翻译页面]
在我的例子中,我使用的是 Tensorflow 版本 2.4.0,所以我只是在运行模型构建器之前添加了这个(我使用的是 Google Colab):
!pip install -U -q segmentation-models
!pip install -q keras==2.4.3
from tensorflow import keras
import segmentation_models as sm
关于python - 属性错误 : module 'tensorflow.compat.v2.__internal__' has no attribute 'dispatch' ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/74353697/
你能比较一下属性吗 我想禁用文本框“txtName”。有两种方式 使用javascript,txtName.disabled = true 使用 ASP.NET, 哪种方法更好,为什么? 最佳答案 我
Count 属性 返回一个集合或 Dictionary 对象包含的项目数。只读。 object.Count object 可以是“应用于”列表中列出的任何集合或对
CompareMode 属性 设置并返回在 Dictionary 对象中比较字符串关键字的比较模式。 object.CompareMode[ = compare] 参数
Column 属性 只读属性,返回 TextStream 文件中当前字符位置的列号。 object.Column object 通常是 TextStream 对象的名称。
AvailableSpace 属性 返回指定的驱动器或网络共享对于用户的可用空间大小。 object.AvailableSpace object 应为 Drive 
Attributes 属性 设置或返回文件或文件夹的属性。可读写或只读(与属性有关)。 object.Attributes [= newattributes] 参数 object
AtEndOfStream 属性 如果文件指针位于 TextStream 文件末,则返回 True;否则如果不为只读则返回 False。 object.A
AtEndOfLine 属性 TextStream 文件中,如果文件指针指向行末标记,就返回 True;否则如果不是只读则返回 False。 object.AtEn
RootFolder 属性 返回一个 Folder 对象,表示指定驱动器的根文件夹。只读。 object.RootFolder object 应为 Dr
Path 属性 返回指定文件、文件夹或驱动器的路径。 object.Path object 应为 File、Folder 或 Drive 对象的名称。 说明 对于驱动器,路径不包含根目录。
ParentFolder 属性 返回指定文件或文件夹的父文件夹。只读。 object.ParentFolder object 应为 File 或 Folder 对象的名称。 说明 以下代码
Name 属性 设置或返回指定的文件或文件夹的名称。可读写。 object.Name [= newname] 参数 object 必选项。应为 File 或&
Line 属性 只读属性,返回 TextStream 文件中的当前行号。 object.Line object 通常是 TextStream 对象的名称。 说明 文件刚
Key 属性 在 Dictionary 对象中设置 key。 object.Key(key) = newkey 参数 object 必选项。通常是 Dictionary 
Item 属性 设置或返回 Dictionary 对象中指定的 key 对应的 item,或返回集合中基于指定的 key 的&
IsRootFolder 属性 如果指定的文件夹是根文件夹,返回 True;否则返回 False。 object.IsRootFolder object 应为&n
IsReady 属性 如果指定的驱动器就绪,返回 True;否则返回 False。 object.IsReady object 应为 Drive&nbs
FreeSpace 属性 返回指定的驱动器或网络共享对于用户的可用空间大小。只读。 object.FreeSpace object 应为 Drive 对象的名称。
FileSystem 属性 返回指定的驱动器使用的文件系统的类型。 object.FileSystem object 应为 Drive 对象的名称。 说明 可
Files 属性 返回由指定文件夹中所有 File 对象(包括隐藏文件和系统文件)组成的 Files 集合。 object.Files object&n
我是一名优秀的程序员,十分优秀!