conv1d doc string misnames first argument

The docs say `conv2d()`'s first argument is `input` which is maybe how the docstring for `conv1d()` ended up saying `input` instead of `value` when describing the `filters` argument.
This commit is contained in:
Donny Viszneki 2018-02-15 05:10:26 -08:00 committed by GitHub
parent e5e03ef314
commit bcc50a1498
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2380,7 +2380,7 @@ def conv1d(value,
Args:
value: A 3D `Tensor`. Must be of type `float16` or `float32`.
filters: A 3D `Tensor`. Must have the same type as `input`.
filters: A 3D `Tensor`. Must have the same type as `value`.
stride: An `integer`. The number of entries by which
the filter is moved right at each step.
padding: 'SAME' or 'VALID'