keras Dense 层

Posted superxuezhazha

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了keras Dense 层相关的知识,希望对你有一定的参考价值。

文档地址:https://keras.io/layers/core/#dense

keras.layers.Dense(units, activation=None, use_bias=True, kernel_initializer=glorot_uniform, bias_initializer=zeros, kernel_regularizer=None, bias_regularizer=None, activity_regularizer=None, kernel_constraint=None, bias_constraint=None)

Dense是这样的操作: 技术图片

技术图片

例子:

# as first layer in a sequential model:
model = Sequential()
model.add(Dense(32, input_shape=(16,)))
# now the model will take as input arrays of shape (*, 16)
# and output arrays of shape (*, 32)

# after the first layer, you don‘t need to specify
# the size of the input anymore:
model.add(Dense(32))

参数说明:

  • units 一个正整数,表示输出的维度
  • activation 激活函数,如果不定义,则a(x)=x
  • use_bias 这一层是否加bias
  • kernel_initializer kernel的初始化器
  • bias_initializer 偏置的初始化器
  • kernerl_regularizer 用于kernel 的正则化函数
  • bias_regularizer 用于偏置的正则化函数
  • activity_regularizer 用于本层输出的正则化函数
  • kernel_constraint 用于kernel权重的约束函数
  • bias_constraint 用于偏置向量的约束函数

 

以上是关于keras Dense 层的主要内容,如果未能解决你的问题,请参考以下文章

如何确定 Keras 的 Dense 方法中的层大小?

深度学习-Keras-层及损失函数

深度学习-Keras-层及损失函数

重用一组 Keras 层

在密集的 Keras 层中绑定自动编码器权重

Keras 密集层输出形状