Go: Update generated wrapper functions for TensorFlow ops.
PiperOrigin-RevId: 301302284 Change-Id: I7ba895a8ce496dfc98c94482a291152a98b15d7a
This commit is contained in:
parent
70eddee620
commit
29690922c7
@ -11736,6 +11736,14 @@ func NonMaxSuppressionV2(scope *Scope, boxes tf.Output, scores tf.Output, max_ou
|
|||||||
// DepthwiseConv2dNativeBackpropFilterAttr is an optional argument to DepthwiseConv2dNativeBackpropFilter.
|
// DepthwiseConv2dNativeBackpropFilterAttr is an optional argument to DepthwiseConv2dNativeBackpropFilter.
|
||||||
type DepthwiseConv2dNativeBackpropFilterAttr func(optionalAttr)
|
type DepthwiseConv2dNativeBackpropFilterAttr func(optionalAttr)
|
||||||
|
|
||||||
|
// DepthwiseConv2dNativeBackpropFilterExplicitPaddings sets the optional explicit_paddings attribute to value.
|
||||||
|
// If not specified, defaults to {}
|
||||||
|
func DepthwiseConv2dNativeBackpropFilterExplicitPaddings(value []int64) DepthwiseConv2dNativeBackpropFilterAttr {
|
||||||
|
return func(m optionalAttr) {
|
||||||
|
m["explicit_paddings"] = value
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// DepthwiseConv2dNativeBackpropFilterDataFormat sets the optional data_format attribute to value.
|
// DepthwiseConv2dNativeBackpropFilterDataFormat sets the optional data_format attribute to value.
|
||||||
//
|
//
|
||||||
// value: Specify the data format of the input and output data. With the
|
// value: Specify the data format of the input and output data. With the
|
||||||
@ -11757,7 +11765,7 @@ func DepthwiseConv2dNativeBackpropFilterDataFormat(value string) DepthwiseConv2d
|
|||||||
// element on that dimension. The dimension order is determined by the value of
|
// element on that dimension. The dimension order is determined by the value of
|
||||||
// `data_format`, see above for details. Dilations in the batch and depth
|
// `data_format`, see above for details. Dilations in the batch and depth
|
||||||
// dimensions must be 1.
|
// dimensions must be 1.
|
||||||
// If not specified, defaults to {i:1 i:1 i:1 i:1}
|
// If not specified, defaults to {i:1 i:1 i:1 i:1}
|
||||||
func DepthwiseConv2dNativeBackpropFilterDilations(value []int64) DepthwiseConv2dNativeBackpropFilterAttr {
|
func DepthwiseConv2dNativeBackpropFilterDilations(value []int64) DepthwiseConv2dNativeBackpropFilterAttr {
|
||||||
return func(m optionalAttr) {
|
return func(m optionalAttr) {
|
||||||
m["dilations"] = value
|
m["dilations"] = value
|
||||||
@ -12014,7 +12022,7 @@ func SampleDistortedBoundingBoxV2Seed2(value int64) SampleDistortedBoundingBoxV2
|
|||||||
//
|
//
|
||||||
// value: The cropped area of the image must have an aspect ratio =
|
// value: The cropped area of the image must have an aspect ratio =
|
||||||
// width / height within this range.
|
// width / height within this range.
|
||||||
// If not specified, defaults to {f:0.75 f:1.33}
|
// If not specified, defaults to {f:0.75 f:1.33}
|
||||||
func SampleDistortedBoundingBoxV2AspectRatioRange(value []float32) SampleDistortedBoundingBoxV2Attr {
|
func SampleDistortedBoundingBoxV2AspectRatioRange(value []float32) SampleDistortedBoundingBoxV2Attr {
|
||||||
return func(m optionalAttr) {
|
return func(m optionalAttr) {
|
||||||
m["aspect_ratio_range"] = value
|
m["aspect_ratio_range"] = value
|
||||||
@ -12025,7 +12033,7 @@ func SampleDistortedBoundingBoxV2AspectRatioRange(value []float32) SampleDistort
|
|||||||
//
|
//
|
||||||
// value: The cropped area of the image must contain a fraction of the
|
// value: The cropped area of the image must contain a fraction of the
|
||||||
// supplied image within this range.
|
// supplied image within this range.
|
||||||
// If not specified, defaults to {f:0.05 f:1}
|
// If not specified, defaults to {f:0.05 f:1}
|
||||||
func SampleDistortedBoundingBoxV2AreaRange(value []float32) SampleDistortedBoundingBoxV2Attr {
|
func SampleDistortedBoundingBoxV2AreaRange(value []float32) SampleDistortedBoundingBoxV2Attr {
|
||||||
return func(m optionalAttr) {
|
return func(m optionalAttr) {
|
||||||
m["area_range"] = value
|
m["area_range"] = value
|
||||||
@ -12243,7 +12251,7 @@ func SampleDistortedBoundingBoxMinObjectCovered(value float32) SampleDistortedBo
|
|||||||
//
|
//
|
||||||
// value: The cropped area of the image must have an aspect ratio =
|
// value: The cropped area of the image must have an aspect ratio =
|
||||||
// width / height within this range.
|
// width / height within this range.
|
||||||
// If not specified, defaults to {f:0.75 f:1.33}
|
// If not specified, defaults to {f:0.75 f:1.33}
|
||||||
func SampleDistortedBoundingBoxAspectRatioRange(value []float32) SampleDistortedBoundingBoxAttr {
|
func SampleDistortedBoundingBoxAspectRatioRange(value []float32) SampleDistortedBoundingBoxAttr {
|
||||||
return func(m optionalAttr) {
|
return func(m optionalAttr) {
|
||||||
m["aspect_ratio_range"] = value
|
m["aspect_ratio_range"] = value
|
||||||
@ -12254,7 +12262,7 @@ func SampleDistortedBoundingBoxAspectRatioRange(value []float32) SampleDistorted
|
|||||||
//
|
//
|
||||||
// value: The cropped area of the image must contain a fraction of the
|
// value: The cropped area of the image must contain a fraction of the
|
||||||
// supplied image within this range.
|
// supplied image within this range.
|
||||||
// If not specified, defaults to {f:0.05 f:1}
|
// If not specified, defaults to {f:0.05 f:1}
|
||||||
func SampleDistortedBoundingBoxAreaRange(value []float32) SampleDistortedBoundingBoxAttr {
|
func SampleDistortedBoundingBoxAreaRange(value []float32) SampleDistortedBoundingBoxAttr {
|
||||||
return func(m optionalAttr) {
|
return func(m optionalAttr) {
|
||||||
m["area_range"] = value
|
m["area_range"] = value
|
||||||
@ -19095,7 +19103,7 @@ func ImageSummaryMaxImages(value int64) ImageSummaryAttr {
|
|||||||
// ImageSummaryBadColor sets the optional bad_color attribute to value.
|
// ImageSummaryBadColor sets the optional bad_color attribute to value.
|
||||||
//
|
//
|
||||||
// value: Color to use for pixels with non-finite values.
|
// value: Color to use for pixels with non-finite values.
|
||||||
// If not specified, defaults to {dtype:DT_UINT8 tensor_shape:{dim:{size:4}} int_val:255 int_val:0 int_val:0 int_val:255}
|
// If not specified, defaults to {dtype:DT_UINT8 tensor_shape:{dim:{size:4}} int_val:255 int_val:0 int_val:0 int_val:255}
|
||||||
func ImageSummaryBadColor(value tf.Tensor) ImageSummaryAttr {
|
func ImageSummaryBadColor(value tf.Tensor) ImageSummaryAttr {
|
||||||
return func(m optionalAttr) {
|
return func(m optionalAttr) {
|
||||||
m["bad_color"] = value
|
m["bad_color"] = value
|
||||||
@ -20166,7 +20174,7 @@ func Conv3DBackpropFilterV2DataFormat(value string) Conv3DBackpropFilterV2Attr {
|
|||||||
// filter element on that dimension. The dimension order is determined by the
|
// filter element on that dimension. The dimension order is determined by the
|
||||||
// value of `data_format`, see above for details. Dilations in the batch and
|
// value of `data_format`, see above for details. Dilations in the batch and
|
||||||
// depth dimensions must be 1.
|
// depth dimensions must be 1.
|
||||||
// If not specified, defaults to {i:1 i:1 i:1 i:1 i:1}
|
// If not specified, defaults to {i:1 i:1 i:1 i:1 i:1}
|
||||||
func Conv3DBackpropFilterV2Dilations(value []int64) Conv3DBackpropFilterV2Attr {
|
func Conv3DBackpropFilterV2Dilations(value []int64) Conv3DBackpropFilterV2Attr {
|
||||||
return func(m optionalAttr) {
|
return func(m optionalAttr) {
|
||||||
m["dilations"] = value
|
m["dilations"] = value
|
||||||
@ -21434,7 +21442,7 @@ func Conv2DBackpropInputDataFormat(value string) Conv2DBackpropInputAttr {
|
|||||||
// element on that dimension. The dimension order is determined by the value of
|
// element on that dimension. The dimension order is determined by the value of
|
||||||
// `data_format`, see above for details. Dilations in the batch and depth
|
// `data_format`, see above for details. Dilations in the batch and depth
|
||||||
// dimensions must be 1.
|
// dimensions must be 1.
|
||||||
// If not specified, defaults to {i:1 i:1 i:1 i:1}
|
// If not specified, defaults to {i:1 i:1 i:1 i:1}
|
||||||
func Conv2DBackpropInputDilations(value []int64) Conv2DBackpropInputAttr {
|
func Conv2DBackpropInputDilations(value []int64) Conv2DBackpropInputAttr {
|
||||||
return func(m optionalAttr) {
|
return func(m optionalAttr) {
|
||||||
m["dilations"] = value
|
m["dilations"] = value
|
||||||
@ -22142,7 +22150,7 @@ func Conv2DDataFormat(value string) Conv2DAttr {
|
|||||||
// filter element on that dimension. The dimension order is determined by the
|
// filter element on that dimension. The dimension order is determined by the
|
||||||
// value of `data_format`, see above for details. Dilations in the batch and
|
// value of `data_format`, see above for details. Dilations in the batch and
|
||||||
// depth dimensions must be 1.
|
// depth dimensions must be 1.
|
||||||
// If not specified, defaults to {i:1 i:1 i:1 i:1}
|
// If not specified, defaults to {i:1 i:1 i:1 i:1}
|
||||||
func Conv2DDilations(value []int64) Conv2DAttr {
|
func Conv2DDilations(value []int64) Conv2DAttr {
|
||||||
return func(m optionalAttr) {
|
return func(m optionalAttr) {
|
||||||
m["dilations"] = value
|
m["dilations"] = value
|
||||||
@ -22338,7 +22346,7 @@ func QuantizedDepthwiseConv2DWithBiasAndReluAndRequantizeOutType(value tf.DataTy
|
|||||||
// QuantizedDepthwiseConv2DWithBiasAndReluAndRequantizeDilations sets the optional dilations attribute to value.
|
// QuantizedDepthwiseConv2DWithBiasAndReluAndRequantizeDilations sets the optional dilations attribute to value.
|
||||||
//
|
//
|
||||||
// value: List of dilation values.
|
// value: List of dilation values.
|
||||||
// If not specified, defaults to {i:1 i:1 i:1 i:1}
|
// If not specified, defaults to {i:1 i:1 i:1 i:1}
|
||||||
func QuantizedDepthwiseConv2DWithBiasAndReluAndRequantizeDilations(value []int64) QuantizedDepthwiseConv2DWithBiasAndReluAndRequantizeAttr {
|
func QuantizedDepthwiseConv2DWithBiasAndReluAndRequantizeDilations(value []int64) QuantizedDepthwiseConv2DWithBiasAndReluAndRequantizeAttr {
|
||||||
return func(m optionalAttr) {
|
return func(m optionalAttr) {
|
||||||
m["dilations"] = value
|
m["dilations"] = value
|
||||||
@ -22407,7 +22415,7 @@ func QuantizedDepthwiseConv2DWithBiasAndReluOutType(value tf.DataType) Quantized
|
|||||||
// QuantizedDepthwiseConv2DWithBiasAndReluDilations sets the optional dilations attribute to value.
|
// QuantizedDepthwiseConv2DWithBiasAndReluDilations sets the optional dilations attribute to value.
|
||||||
//
|
//
|
||||||
// value: List of dilation values.
|
// value: List of dilation values.
|
||||||
// If not specified, defaults to {i:1 i:1 i:1 i:1}
|
// If not specified, defaults to {i:1 i:1 i:1 i:1}
|
||||||
func QuantizedDepthwiseConv2DWithBiasAndReluDilations(value []int64) QuantizedDepthwiseConv2DWithBiasAndReluAttr {
|
func QuantizedDepthwiseConv2DWithBiasAndReluDilations(value []int64) QuantizedDepthwiseConv2DWithBiasAndReluAttr {
|
||||||
return func(m optionalAttr) {
|
return func(m optionalAttr) {
|
||||||
m["dilations"] = value
|
m["dilations"] = value
|
||||||
@ -22522,7 +22530,7 @@ func QuantizedDepthwiseConv2DWithBiasOutType(value tf.DataType) QuantizedDepthwi
|
|||||||
// QuantizedDepthwiseConv2DWithBiasDilations sets the optional dilations attribute to value.
|
// QuantizedDepthwiseConv2DWithBiasDilations sets the optional dilations attribute to value.
|
||||||
//
|
//
|
||||||
// value: List of dilation values.
|
// value: List of dilation values.
|
||||||
// If not specified, defaults to {i:1 i:1 i:1 i:1}
|
// If not specified, defaults to {i:1 i:1 i:1 i:1}
|
||||||
func QuantizedDepthwiseConv2DWithBiasDilations(value []int64) QuantizedDepthwiseConv2DWithBiasAttr {
|
func QuantizedDepthwiseConv2DWithBiasDilations(value []int64) QuantizedDepthwiseConv2DWithBiasAttr {
|
||||||
return func(m optionalAttr) {
|
return func(m optionalAttr) {
|
||||||
m["dilations"] = value
|
m["dilations"] = value
|
||||||
@ -22581,7 +22589,7 @@ func QuantizedDepthwiseConv2DOutType(value tf.DataType) QuantizedDepthwiseConv2D
|
|||||||
// QuantizedDepthwiseConv2DDilations sets the optional dilations attribute to value.
|
// QuantizedDepthwiseConv2DDilations sets the optional dilations attribute to value.
|
||||||
//
|
//
|
||||||
// value: List of dilation values.
|
// value: List of dilation values.
|
||||||
// If not specified, defaults to {i:1 i:1 i:1 i:1}
|
// If not specified, defaults to {i:1 i:1 i:1 i:1}
|
||||||
func QuantizedDepthwiseConv2DDilations(value []int64) QuantizedDepthwiseConv2DAttr {
|
func QuantizedDepthwiseConv2DDilations(value []int64) QuantizedDepthwiseConv2DAttr {
|
||||||
return func(m optionalAttr) {
|
return func(m optionalAttr) {
|
||||||
m["dilations"] = value
|
m["dilations"] = value
|
||||||
@ -22755,7 +22763,7 @@ func QuantizedConv2DPerChannelOutType(value tf.DataType) QuantizedConv2DPerChann
|
|||||||
// QuantizedConv2DPerChannelDilations sets the optional dilations attribute to value.
|
// QuantizedConv2DPerChannelDilations sets the optional dilations attribute to value.
|
||||||
//
|
//
|
||||||
// value: list of dilation values.
|
// value: list of dilation values.
|
||||||
// If not specified, defaults to {i:1 i:1 i:1 i:1}
|
// If not specified, defaults to {i:1 i:1 i:1 i:1}
|
||||||
func QuantizedConv2DPerChannelDilations(value []int64) QuantizedConv2DPerChannelAttr {
|
func QuantizedConv2DPerChannelDilations(value []int64) QuantizedConv2DPerChannelAttr {
|
||||||
return func(m optionalAttr) {
|
return func(m optionalAttr) {
|
||||||
m["dilations"] = value
|
m["dilations"] = value
|
||||||
@ -23136,7 +23144,7 @@ func Conv3DBackpropInputV2DataFormat(value string) Conv3DBackpropInputV2Attr {
|
|||||||
// filter element on that dimension. The dimension order is determined by the
|
// filter element on that dimension. The dimension order is determined by the
|
||||||
// value of `data_format`, see above for details. Dilations in the batch and
|
// value of `data_format`, see above for details. Dilations in the batch and
|
||||||
// depth dimensions must be 1.
|
// depth dimensions must be 1.
|
||||||
// If not specified, defaults to {i:1 i:1 i:1 i:1 i:1}
|
// If not specified, defaults to {i:1 i:1 i:1 i:1 i:1}
|
||||||
func Conv3DBackpropInputV2Dilations(value []int64) Conv3DBackpropInputV2Attr {
|
func Conv3DBackpropInputV2Dilations(value []int64) Conv3DBackpropInputV2Attr {
|
||||||
return func(m optionalAttr) {
|
return func(m optionalAttr) {
|
||||||
m["dilations"] = value
|
m["dilations"] = value
|
||||||
@ -25576,7 +25584,7 @@ func AvgPool3DGrad(scope *Scope, orig_input_shape tf.Output, grad tf.Output, ksi
|
|||||||
type Conv3DBackpropFilterAttr func(optionalAttr)
|
type Conv3DBackpropFilterAttr func(optionalAttr)
|
||||||
|
|
||||||
// Conv3DBackpropFilterDilations sets the optional dilations attribute to value.
|
// Conv3DBackpropFilterDilations sets the optional dilations attribute to value.
|
||||||
// If not specified, defaults to {i:1 i:1 i:1 i:1 i:1}
|
// If not specified, defaults to {i:1 i:1 i:1 i:1 i:1}
|
||||||
func Conv3DBackpropFilterDilations(value []int64) Conv3DBackpropFilterAttr {
|
func Conv3DBackpropFilterDilations(value []int64) Conv3DBackpropFilterAttr {
|
||||||
return func(m optionalAttr) {
|
return func(m optionalAttr) {
|
||||||
m["dilations"] = value
|
m["dilations"] = value
|
||||||
@ -25639,7 +25647,7 @@ func Conv3DDataFormat(value string) Conv3DAttr {
|
|||||||
// filter element on that dimension. The dimension order is determined by the
|
// filter element on that dimension. The dimension order is determined by the
|
||||||
// value of `data_format`, see above for details. Dilations in the batch and
|
// value of `data_format`, see above for details. Dilations in the batch and
|
||||||
// depth dimensions must be 1.
|
// depth dimensions must be 1.
|
||||||
// If not specified, defaults to {i:1 i:1 i:1 i:1 i:1}
|
// If not specified, defaults to {i:1 i:1 i:1 i:1 i:1}
|
||||||
func Conv3DDilations(value []int64) Conv3DAttr {
|
func Conv3DDilations(value []int64) Conv3DAttr {
|
||||||
return func(m optionalAttr) {
|
return func(m optionalAttr) {
|
||||||
m["dilations"] = value
|
m["dilations"] = value
|
||||||
@ -25952,6 +25960,14 @@ func AssignAddVariableOp(scope *Scope, resource tf.Output, value tf.Output) (o *
|
|||||||
// DepthwiseConv2dNativeBackpropInputAttr is an optional argument to DepthwiseConv2dNativeBackpropInput.
|
// DepthwiseConv2dNativeBackpropInputAttr is an optional argument to DepthwiseConv2dNativeBackpropInput.
|
||||||
type DepthwiseConv2dNativeBackpropInputAttr func(optionalAttr)
|
type DepthwiseConv2dNativeBackpropInputAttr func(optionalAttr)
|
||||||
|
|
||||||
|
// DepthwiseConv2dNativeBackpropInputExplicitPaddings sets the optional explicit_paddings attribute to value.
|
||||||
|
// If not specified, defaults to {}
|
||||||
|
func DepthwiseConv2dNativeBackpropInputExplicitPaddings(value []int64) DepthwiseConv2dNativeBackpropInputAttr {
|
||||||
|
return func(m optionalAttr) {
|
||||||
|
m["explicit_paddings"] = value
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// DepthwiseConv2dNativeBackpropInputDataFormat sets the optional data_format attribute to value.
|
// DepthwiseConv2dNativeBackpropInputDataFormat sets the optional data_format attribute to value.
|
||||||
//
|
//
|
||||||
// value: Specify the data format of the input and output data. With the
|
// value: Specify the data format of the input and output data. With the
|
||||||
@ -25973,7 +25989,7 @@ func DepthwiseConv2dNativeBackpropInputDataFormat(value string) DepthwiseConv2dN
|
|||||||
// element on that dimension. The dimension order is determined by the value of
|
// element on that dimension. The dimension order is determined by the value of
|
||||||
// `data_format`, see above for details. Dilations in the batch and depth
|
// `data_format`, see above for details. Dilations in the batch and depth
|
||||||
// dimensions must be 1.
|
// dimensions must be 1.
|
||||||
// If not specified, defaults to {i:1 i:1 i:1 i:1}
|
// If not specified, defaults to {i:1 i:1 i:1 i:1}
|
||||||
func DepthwiseConv2dNativeBackpropInputDilations(value []int64) DepthwiseConv2dNativeBackpropInputAttr {
|
func DepthwiseConv2dNativeBackpropInputDilations(value []int64) DepthwiseConv2dNativeBackpropInputAttr {
|
||||||
return func(m optionalAttr) {
|
return func(m optionalAttr) {
|
||||||
m["dilations"] = value
|
m["dilations"] = value
|
||||||
@ -26023,7 +26039,7 @@ func DepthwiseConv2dNativeBackpropInput(scope *Scope, input_sizes tf.Output, fil
|
|||||||
type Conv3DBackpropInputAttr func(optionalAttr)
|
type Conv3DBackpropInputAttr func(optionalAttr)
|
||||||
|
|
||||||
// Conv3DBackpropInputDilations sets the optional dilations attribute to value.
|
// Conv3DBackpropInputDilations sets the optional dilations attribute to value.
|
||||||
// If not specified, defaults to {i:1 i:1 i:1 i:1 i:1}
|
// If not specified, defaults to {i:1 i:1 i:1 i:1 i:1}
|
||||||
func Conv3DBackpropInputDilations(value []int64) Conv3DBackpropInputAttr {
|
func Conv3DBackpropInputDilations(value []int64) Conv3DBackpropInputAttr {
|
||||||
return func(m optionalAttr) {
|
return func(m optionalAttr) {
|
||||||
m["dilations"] = value
|
m["dilations"] = value
|
||||||
@ -26252,6 +26268,14 @@ func RetrieveTPUEmbeddingFTRLParametersGradAccumDebug(scope *Scope, num_shards i
|
|||||||
// DepthwiseConv2dNativeAttr is an optional argument to DepthwiseConv2dNative.
|
// DepthwiseConv2dNativeAttr is an optional argument to DepthwiseConv2dNative.
|
||||||
type DepthwiseConv2dNativeAttr func(optionalAttr)
|
type DepthwiseConv2dNativeAttr func(optionalAttr)
|
||||||
|
|
||||||
|
// DepthwiseConv2dNativeExplicitPaddings sets the optional explicit_paddings attribute to value.
|
||||||
|
// If not specified, defaults to {}
|
||||||
|
func DepthwiseConv2dNativeExplicitPaddings(value []int64) DepthwiseConv2dNativeAttr {
|
||||||
|
return func(m optionalAttr) {
|
||||||
|
m["explicit_paddings"] = value
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// DepthwiseConv2dNativeDataFormat sets the optional data_format attribute to value.
|
// DepthwiseConv2dNativeDataFormat sets the optional data_format attribute to value.
|
||||||
//
|
//
|
||||||
// value: Specify the data format of the input and output data. With the
|
// value: Specify the data format of the input and output data. With the
|
||||||
@ -26273,7 +26297,7 @@ func DepthwiseConv2dNativeDataFormat(value string) DepthwiseConv2dNativeAttr {
|
|||||||
// element on that dimension. The dimension order is determined by the value of
|
// element on that dimension. The dimension order is determined by the value of
|
||||||
// `data_format`, see above for details. Dilations in the batch and depth
|
// `data_format`, see above for details. Dilations in the batch and depth
|
||||||
// dimensions must be 1.
|
// dimensions must be 1.
|
||||||
// If not specified, defaults to {i:1 i:1 i:1 i:1}
|
// If not specified, defaults to {i:1 i:1 i:1 i:1}
|
||||||
func DepthwiseConv2dNativeDilations(value []int64) DepthwiseConv2dNativeAttr {
|
func DepthwiseConv2dNativeDilations(value []int64) DepthwiseConv2dNativeAttr {
|
||||||
return func(m optionalAttr) {
|
return func(m optionalAttr) {
|
||||||
m["dilations"] = value
|
m["dilations"] = value
|
||||||
@ -26903,7 +26927,7 @@ func QuantizedConv2DOutType(value tf.DataType) QuantizedConv2DAttr {
|
|||||||
// filter element on that dimension. The dimension order is determined by the
|
// filter element on that dimension. The dimension order is determined by the
|
||||||
// value of `data_format`, see above for details. Dilations in the batch and
|
// value of `data_format`, see above for details. Dilations in the batch and
|
||||||
// depth dimensions must be 1.
|
// depth dimensions must be 1.
|
||||||
// If not specified, defaults to {i:1 i:1 i:1 i:1}
|
// If not specified, defaults to {i:1 i:1 i:1 i:1}
|
||||||
func QuantizedConv2DDilations(value []int64) QuantizedConv2DAttr {
|
func QuantizedConv2DDilations(value []int64) QuantizedConv2DAttr {
|
||||||
return func(m optionalAttr) {
|
return func(m optionalAttr) {
|
||||||
m["dilations"] = value
|
m["dilations"] = value
|
||||||
@ -45738,7 +45762,7 @@ func Conv2DBackpropFilterDataFormat(value string) Conv2DBackpropFilterAttr {
|
|||||||
// element on that dimension. The dimension order is determined by the value of
|
// element on that dimension. The dimension order is determined by the value of
|
||||||
// `data_format`, see above for details. Dilations in the batch and depth
|
// `data_format`, see above for details. Dilations in the batch and depth
|
||||||
// dimensions must be 1.
|
// dimensions must be 1.
|
||||||
// If not specified, defaults to {i:1 i:1 i:1 i:1}
|
// If not specified, defaults to {i:1 i:1 i:1 i:1}
|
||||||
func Conv2DBackpropFilterDilations(value []int64) Conv2DBackpropFilterAttr {
|
func Conv2DBackpropFilterDilations(value []int64) Conv2DBackpropFilterAttr {
|
||||||
return func(m optionalAttr) {
|
return func(m optionalAttr) {
|
||||||
m["dilations"] = value
|
m["dilations"] = value
|
||||||
|
Loading…
Reference in New Issue
Block a user