10 references to IsIncreasing
Microsoft.ML.Core.Tests (6)
UnitTests\TestUtilities.cs (6)
123
Assert.True(Utils.
IsIncreasing
(0, x, 10));
125
Assert.False(Utils.
IsIncreasing
(1, x, 10));
127
Assert.False(Utils.
IsIncreasing
(0, x, 9));
139
Assert.False(Utils.
IsIncreasing
(0, x, 10));
146
Assert.False(Utils.
IsIncreasing
(0, x, 10));
153
Assert.True(Utils.
IsIncreasing
(0, nullX, 10));
Microsoft.ML.Data (2)
DataView\Transposer.cs (2)
953
Contracts.Assert(Utils.
IsIncreasing
(1, ends, vectorSize + 1));
1100
Contracts.Assert(Utils.
IsIncreasing
(0, lims, type.Size + 1));
Microsoft.ML.FastTree (1)
FastTree.cs (1)
2696
Contracts.Assert(Utils.
IsIncreasing
(0, features, values.Length));
Microsoft.ML.StandardTrainers (1)
Standard\LogisticRegression\MulticlassLogisticRegression.cs (1)
591
Host.CheckDecode(Utils.
IsIncreasing
(0, indices[i], NumberOfFeatures));