Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion keras/src/layers/core/dense.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ class Dense(Layer):
where `activation` is the element-wise activation function
passed as the `activation` argument, `kernel` is a weights matrix
created by the layer, and `bias` is a bias vector created by the layer
(only applicable if `use_bias` is `True`).
(only applicable if `use_bias` is `True`), we can set use_bias as False if
we add batch_normalization as it has it's own inbuild parameters.

Note: If the input to the layer has a rank greater than 2, `Dense`
computes the dot product between the `inputs` and the `kernel` along the
Expand Down
Loading