我正在使用来自efficientnet 的层对该层进行一些后处理,但在提取层并对其执行操作后,它显示:
AttributeError: 'tuple' 对象没有属性 'layer' 。
继续运行。python 3.6.2
_ 尝试使用像 ResNet 这样的 keras 模型,并且工作正常。tensorflow 2.0
keras 2.2.4
base_model = EfficientNetB4((img_height, img_width, 3), weights='imagenet', include_top=False)
base_model.summary()
x = base_model.get_layer('swish_96').output
x_a = ASPP(x)
ASPP(atrous spatial pyramid pooling)是在得到层后对x进行各种层操作的类。