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