MCPcopy Create free account
hub / github.com/DeepRec-AI/DeepRec / _conv1d

Method _conv1d

tensorflow/python/ops/nn_ops.py:231–240  ·  view source on GitHub ↗
(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

Calls 1

conv1dFunction · 0.70

Tested by

no test coverage detected