如何获得使用什么类型的激活?

how to get what type of activation is used?

我发现 model.layers[index].output 打印了我需要的信息。但是,我无法通过查看此输出来了解使用了什么激活函数: Tensor("dense_11_1/clip_by_value:0", shape=(?, 256), dtype=float32)

通常,它就像Tensor("block5_conv3_1/Relu:0", shape=(?, ?, ?, 512), dtype=float32),我可以看到Relu在那一层被使用。

如何确定上图输出的激活函数? 谢谢

它比你想象的要容易,具有激活的层将使用 activation 属性公开它们,所以你可以这样做:

model.layers[index].activation

并且应该为您提供有关该层使用的激活的信息。