ArgMin - 1 vs 12#
Next section compares an older to a newer version of the same operator after both definition are converted into markdown text. Green means an addition to the newer version, red means a deletion. Anything else is unchanged.
- ArgMin1 → ArgMin12 +2 -9
ArgMin1 → ArgMin12
RENAMED
@@ -1 +1 @@
|
|
1
1
|
Computes the indices of the min elements of the input tensor's element along the
|
2
2
|
provided axis. The resulting tensor has the same rank as the input if keepdims equals 1.
|
3
|
-
If keepdims equal 0, then the
|
3
|
+
If keepdims equal 0, then the resulted tensor have the reduced dimension pruned.
|
4
|
-
If select_last_index is True (default False), the index of the last occurrence of the min
|
5
|
-
is selected if the min appears more than once in the input. Otherwise the index of the
|
6
|
-
first occurrence is selected.
|
7
4
|
The type of the output tensor is integer.
|
8
5
|
**Attributes**
|
9
6
|
* **axis**:
|
10
|
-
The axis in which to compute the arg indices.
|
7
|
+
The axis in which to compute the arg indices.
|
11
|
-
r-1] where r = rank(data).
|
12
8
|
* **keepdims**:
|
13
9
|
Keep the reduced dimension or not, default 1 means keep reduced
|
14
10
|
dimension.
|
15
|
-
* **select_last_index**:
|
16
|
-
Whether to select the last index or the first index if the {name}
|
17
|
-
appears in multiple indices, default is False (first index).
|
18
11
|
**Inputs**
|
19
12
|
* **data** (heterogeneous) - **T**:
|
20
13
|
An input tensor.
|
21
14
|
**Outputs**
|
22
15
|
* **reduced** (heterogeneous) - **tensor(int64)**:
|
23
16
|
Reduced output tensor with integer data type.
|
24
17
|
**Type Constraints**
|
25
18
|
* **T** in (
|
26
19
|
tensor(double),
|
27
20
|
tensor(float),
|
28
21
|
tensor(float16),
|
29
22
|
tensor(int16),
|
30
23
|
tensor(int32),
|
31
24
|
tensor(int64),
|
32
25
|
tensor(int8),
|
33
26
|
tensor(uint16),
|
34
27
|
tensor(uint32),
|
35
28
|
tensor(uint64),
|
36
29
|
tensor(uint8)
|
37
30
|
):
|
38
31
|
Constrain input and output types to all numeric tensors.
|