Update ops-related pbtxt files.

PiperOrigin-RevId: 196179875
This commit is contained in:
A. Unique TensorFlower 2018-05-10 15:20:53 -07:00 committed by TensorFlower Gardener
parent 8444f722cc
commit ff7f7a566b
2 changed files with 109 additions and 0 deletions

View File

@ -14641,6 +14641,66 @@ op {
}
}
}
op {
name: "CropAndResize"
input_arg {
name: "image"
type_attr: "T"
}
input_arg {
name: "boxes"
type: DT_FLOAT
}
input_arg {
name: "box_ind"
type: DT_INT32
}
input_arg {
name: "crop_size"
type: DT_INT32
}
output_arg {
name: "crops"
type: DT_FLOAT
}
attr {
name: "T"
type: "type"
allowed_values {
list {
type: DT_UINT8
type: DT_UINT16
type: DT_INT8
type: DT_INT16
type: DT_INT32
type: DT_INT64
type: DT_HALF
type: DT_FLOAT
type: DT_DOUBLE
}
}
}
attr {
name: "method"
type: "string"
default_value {
s: "bilinear"
}
allowed_values {
list {
s: "bilinear"
s: "nearest"
}
}
}
attr {
name: "extrapolation_value"
type: "float"
default_value {
f: 0
}
}
}
op {
name: "CropAndResizeGradBoxes"
input_arg {
@ -14790,6 +14850,53 @@ op {
}
}
}
op {
name: "CropAndResizeGradImage"
input_arg {
name: "grads"
type: DT_FLOAT
}
input_arg {
name: "boxes"
type: DT_FLOAT
}
input_arg {
name: "box_ind"
type: DT_INT32
}
input_arg {
name: "image_size"
type: DT_INT32
}
output_arg {
name: "output"
type_attr: "T"
}
attr {
name: "T"
type: "type"
allowed_values {
list {
type: DT_FLOAT
type: DT_HALF
type: DT_DOUBLE
}
}
}
attr {
name: "method"
type: "string"
default_value {
s: "bilinear"
}
allowed_values {
list {
s: "bilinear"
s: "nearest"
}
}
}
}
op {
name: "Cross"
input_arg {

View File

@ -6242,6 +6242,7 @@ op {
allowed_values {
list {
s: "bilinear"
s: "nearest"
}
}
}
@ -6347,6 +6348,7 @@ op {
allowed_values {
list {
s: "bilinear"
s: "nearest"
}
}
}