Home | History | Annotate | Download | only in ops

Lines Matching refs:VALID

74     padding: Padding method to use, must be either "VALID" or "SAME".
78 starts with "NC"). For N=1, the valid values are "NWC" (default) and
79 "NCW". For N=2, the valid values are "NHWC" (default) and "NCHW".
80 For N=3, the valid values are "NDHWC" (default) and "NCDHW".
89 if padding == "VALID":
232 "VALID")
247 If `padding = "VALID"`, then:
283 Note in the case that `dilation_rate` is not uniformly 1, specifying "VALID"
289 `dilation_rate` parameters and "VALID" padding
291 net = with_space_to_batch(net, dilation_rate, "VALID", op_1)
293 net = with_space_to_batch(net, dilation_rate, "VALID", op_k)
298 result = op_1(converted_input, num_spatial_dims, "VALID")
300 result = op_k(result, num_spatial_dims, "VALID")
302 net = with_space_to_batch(net, dilation_rate, "VALID", combined_op)
322 net = with_space_to_batch(net, dilation_rate, "VALID", combined_op)
327 padding: str constant equal to "VALID" or "SAME"
331 If padding = "VALID", filter_shape is ignored and need not be specified.
338 starts with "NC"). For N=1, the valid values are "NWC" (default) and
339 "NCW". For N=2, the valid values are "NHWC" (default) and "NCHW".
340 For N=3, the valid values are "NDHWC" (default) and "NCDHW".
444 # to "VALID". The second is required so that the height and width of the
447 # Padding required to reduce to "VALID" convolution
461 elif padding == "VALID":
470 self.op = build_op(num_spatial_dims, "VALID")
721 padding: A string, either `"VALID"` or `"SAME"`. The padding algorithm.
737 starts with "NC"). For N=1, the valid values are "NWC" (default) and
738 "NCW". For N=2, the valid values are "NHWC" (default) and "NCHW".
739 For N=3, the valid values are "NDHWC" (default) and "NCDHW".
756 If padding == "VALID":
764 is other than `"VALID"` or `"SAME"`, or if data_format is invalid.
923 padding: The padding algorithm, must be "SAME" or "VALID".
935 starts with "NC"). For N=1, the valid values are "NWC" (default) and
936 "NCW". For N=2, the valid values are "NHWC" (default) and "NCHW".
937 For N=3, the valid values are "NDHWC" (default) and "NCDHW".
953 If padding = "VALID":
1108 net = conv2d(net, filters, strides=[1, 1, 1, 1], padding="VALID")
1156 padding: A string, either `'VALID'` or `'SAME'`. The padding algorithm.
1161 Output shape with `'VALID`` padding is:
1172 padding is other than `'VALID'` or `'SAME'`.
1209 padding: A string, either `'VALID'` or `'SAME'`. The padding algorithm.
1219 padding is other than `'VALID'` or `'SAME'`.
1246 if padding != "VALID" and padding != "SAME":
1247 raise ValueError("padding must be either VALID or SAME:"
1292 padding: A string, either `'VALID'` or `'SAME'`. The padding algorithm.
1300 padding is other than `'VALID'` or `'SAME'`, or if the `rate` is less
1338 # to "VALID". The second is required so that the height and width of the
1341 # Padding required to reduce to "VALID" convolution
1364 elif padding == "VALID":
1370 raise ValueError("padding must be either VALID or SAME:"
1397 padding="VALID",
1434 padding: A string, either `'VALID'` or `'SAME'`. The padding algorithm.
1445 padding is other than `'VALID'` or `'SAME'`.
1470 if padding != "VALID" and padding != "SAME":
1471 raise ValueError("padding must be either VALID or SAME:"
1800 a valid probability distribution. If they are not, the computation of the
1823 labels: Each row `labels[i]` must be a valid probability distribution.
1920 a valid probability distribution. If they are not, the computation of the
1943 labels: Each row `labels[i]` must be a valid probability distribution.
2079 padding: A string, either `'VALID'` or `'SAME'`. The padding algorithm.
2108 padding: A string, either `'VALID'` or `'SAME'`. The padding algorithm.
2351 each row for matrices). Valid range of n is `[0, input.shape[:-1])`
2411 padding: 'SAME' or 'VALID'
2475 padding: A string, either `'VALID'` or `'SAME'`. The padding algorithm.
2485 padding is other than `'VALID'` or `'SAME'`.
2517 if padding != "VALID" and padding != "SAME":
2518 raise ValueError("padding must be either VALID or SAME:"
2596 padding: A `string` from: `"SAME", "VALID"`.
2607 padding is other than `'VALID'` or `'SAME'`.