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
Next Next commit
Update local.py
stride value implies the input argument of 'stride', and dilation_rate implies the input argument of 'dilation rate' of Conv1D function.
It is more explicit to express as code rather than using words stride value, dilation value.
Or, at least both stride and dilation_rate should be written in code, not only dilation rate as before document
  • Loading branch information
Naruu authored Sep 29, 2019
commit 17784fbcbc30533e626a49865a8193d7162d02ba
4 changes: 2 additions & 2 deletions keras/layers/local.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ class LocallyConnected1D(Layer):
specifying the length of the 1D convolution window.
strides: An integer or tuple/list of a single integer,
specifying the stride length of the convolution.
Specifying any stride value != 1 is incompatible with specifying
any `dilation_rate` value != 1.
Specifying any `strides!=1` is incompatible with specifying
any `dilation_rate!=1`.
padding: Currently only supports `"valid"` (case-insensitive).
`"same"` may be supported in the future.
data_format: String, one of `channels_first`, `channels_last`.
Expand Down