8 writes to Min
Microsoft.ML.Data (8)
Commands\CrossValidationCommand.cs (2)
488
trainFilter.
Min
= (Double)fold / _numFolds;
498
testFilter.
Min
= trainFilter.Min;
DataLoadSave\DataOperationsCatalog.cs (4)
422
Min
= 0,
429
Min
= 0,
483
Min
= (double)fold / numberOfFolds,
493
Min
= (double)fold / numberOfFolds,
Transforms\RangeFilter.cs (2)
91
: this(env, new Options() { Column = column,
Min
= lowerBound, Max = upperBound, IncludeMax = includeUpperBound }, input)
114
options.
Min
= null;
6 references to Min
Microsoft.ML.Data (6)
Commands\CrossValidationCommand.cs (1)
498
testFilter.Min = trainFilter.
Min
;
Transforms\RangeFilter.cs (5)
111
if (options.
Min
< 0)
122
if (options.
Min
== null && options.Max == null)
123
throw ch.ExceptUserArg(nameof(options.
Min
), "At least one of min and max must be specified.");
124
_min = options.
Min
?? Double.NegativeInfinity;
127
throw ch.ExceptUserArg(nameof(options.
Min
), "min must be less than or equal to max");