(
input, # pylint: disable=redefined-builtin
filters,
strides=None,
padding="VALID",
data_format=None,
dilations=None,
name=None)
| 923 | |
| 924 | @tf_export("nn.convolution", v1=[]) |
| 925 | def convolution_v2( |
| 926 | input, # pylint: disable=redefined-builtin |
| 927 | filters, |
| 928 | strides=None, |
| 929 | padding="VALID", |
| 930 | data_format=None, |
| 931 | dilations=None, |
| 932 | name=None): |
| 933 | return convolution_internal( |
| 934 | input, # pylint: disable=redefined-builtin |
| 935 | filters, |
| 936 | strides=strides, |
| 937 | padding=padding, |
| 938 | data_format=data_format, |
| 939 | dilations=dilations, |
| 940 | name=name) |
| 941 | |
| 942 | |
| 943 | convolution_v2.__doc__ = deprecation.rewrite_argument_docstring( |
nothing calls this directly
no test coverage detected