Skip to content

Commit af67a72

Browse files
authored
Remove argmin/max selectLastIndex parameter (#722)
1 parent fe96a78 commit af67a72

1 file changed

Lines changed: 1 addition & 6 deletions

File tree

index.bs

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1422,13 +1422,12 @@ Build a composed graph up to a given output operand into a computational graph a
14221422
NOTE: Specifying an [=computational graph/input=] operand or [=computational graph/constant=] operand as a graph {{MLGraphBuilder/build(outputs)/outputs|output}} results in an error, as this is usually an incorrect usage of the API. Callers can work around this by introducing an {{MLGraphBuilder/identity()}} operator.
14231423

14241424
### argMin/argMax operations ### {#api-mlgraphbuilder-argminmax}
1425-
Return the index location of the minimum or maxmium values of all the input values along the axes.
1425+
Return the index location of the minimum or maxmium values of all the input values along the axes. In case of ties, the identity of the return value is implementation dependent.
14261426

14271427
<script type=idl>
14281428
dictionary MLArgMinMaxOptions {
14291429
sequence<[EnforceRange] unsigned long> axes;
14301430
boolean keepDimensions = false;
1431-
boolean selectLastIndex = false;
14321431
};
14331432

14341433
partial interface MLGraphBuilder {
@@ -1446,10 +1445,6 @@ partial interface MLGraphBuilder {
14461445
: <dfn>keepDimensions</dfn>
14471446
::
14481447
If true, retains reduced dimensions with [=list/size=] 1.
1449-
1450-
: <dfn>selectLastIndex</dfn>
1451-
::
1452-
If true, select the last index instead of the first found along the axes.
14531448
</dl>
14541449

14551450
<div>

0 commit comments

Comments
 (0)