13 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;
Microsoft.ML.Ensemble (1)
Selector\SubsetSelector\RandomPartitionSelector.cs (1)
49
var viewTrain = new RangeFilter(Host, new RangeFilter.Options() { Column = name,
Min
= (Double)i / Size, Max = (Double)(i + 1) / Size }, view);
Microsoft.ML.EntryPoints (4)
CVSplit.cs (2)
71
new RangeFilter.Options { Column = splitCol,
Min
= i * fraction, Max = (i + 1) * fraction, Complement = true }, data);
75
new RangeFilter.Options { Column = splitCol,
Min
= i * fraction, Max = (i + 1) * fraction, Complement = false }, data);
TrainTestSplit.cs (2)
56
new RangeFilter.Options { Column = splitCol,
Min
= 0, Max = input.Fraction, Complement = false }, data);
60
new RangeFilter.Options { Column = splitCol,
Min
= 0, Max = input.Fraction, Complement = true }, data);
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");