aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/g3doc/api_docs/python/functions_and_classes/shard0/tf.segment_min.md
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/g3doc/api_docs/python/functions_and_classes/shard0/tf.segment_min.md')
-rw-r--r--tensorflow/g3doc/api_docs/python/functions_and_classes/shard0/tf.segment_min.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/tensorflow/g3doc/api_docs/python/functions_and_classes/shard0/tf.segment_min.md b/tensorflow/g3doc/api_docs/python/functions_and_classes/shard0/tf.segment_min.md
index 5cacf2cf72..28cc205863 100644
--- a/tensorflow/g3doc/api_docs/python/functions_and_classes/shard0/tf.segment_min.md
+++ b/tensorflow/g3doc/api_docs/python/functions_and_classes/shard0/tf.segment_min.md
@@ -17,15 +17,15 @@ that `segment_ids[j] == i`.
##### Args:
-* <b>`data`</b>: A `Tensor`. Must be one of the following types: `float32`, `float64`, `int32`, `int64`, `uint8`, `int16`, `int8`, `uint16`, `half`.
-* <b>`segment_ids`</b>: A `Tensor`. Must be one of the following types: `int32`, `int64`.
+* <b>`data`</b>: A `Output`. Must be one of the following types: `float32`, `float64`, `int32`, `int64`, `uint8`, `int16`, `int8`, `uint16`, `half`.
+* <b>`segment_ids`</b>: A `Output`. Must be one of the following types: `int32`, `int64`.
A 1-D tensor whose rank is equal to the rank of `data`'s
first dimension. Values should be sorted and can be repeated.
* <b>`name`</b>: A name for the operation (optional).
##### Returns:
- A `Tensor`. Has the same type as `data`.
+ A `Output`. Has the same type as `data`.
Has same shape as data, except for dimension 0 which
has size `k`, the number of segments.