Method
_conv1d
(self, input, filter, strides, padding, data_format, dilations,
name)
Source from the content-addressed store, hash-verified
| 229 | # those for gen_nn_ops.conv2d and gen_nn_ops.conv3d. |
| 230 | # pylint: disable=redefined-builtin |
| 231 | def _conv1d(self, input, filter, strides, padding, data_format, dilations, |
| 232 | name): |
| 233 | return conv1d( |
| 234 | value=input, |
| 235 | filters=filter, |
| 236 | stride=strides, |
| 237 | padding=padding, |
| 238 | data_format=data_format, |
| 239 | dilations=dilations, |
| 240 | name=name) |
| 241 | |
| 242 | # pylint: enable=redefined-builtin |
| 243 | |
Callers
nothing calls this directly
Tested by
no test coverage detected