15 writes to Max
Microsoft.ML.Data (8)
Commands\CrossValidationCommand.cs (2)
489
trainFilter.
Max
= (Double)(fold + 1) / _numFolds;
499
testFilter.
Max
= trainFilter.Max;
DataLoadSave\DataOperationsCatalog.cs (4)
423
Max
= testFraction,
430
Max
= testFraction,
484
Max
= (double)(fold + 1) / numberOfFolds,
494
Max
= (double)(fold + 1) / numberOfFolds,
Transforms\RangeFilter.cs (2)
91
: this(env, new Options() { Column = column, Min = lowerBound,
Max
= upperBound, IncludeMax = includeUpperBound }, input)
119
options.
Max
= null;
Microsoft.ML.Ensemble (3)
Selector\SubsetSelector\BaseSubsetSelector.cs (2)
78
var viewTest = new RangeFilter(Host, new RangeFilter.Options() { Column = name,
Max
= ValidationDatasetProportion }, view);
79
var viewTrain = new RangeFilter(Host, new RangeFilter.Options() { Column = name,
Max
= ValidationDatasetProportion, Complement = true }, view);
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);
5 references to Max
Microsoft.ML.Data (5)
Commands\CrossValidationCommand.cs (1)
499
testFilter.Max = trainFilter.
Max
;
Transforms\RangeFilter.cs (4)
116
if (options.
Max
> 1)
122
if (options.Min == null && options.
Max
== null)
125
_max = options.
Max
?? Double.PositiveInfinity;
130
_includeMax = options.IncludeMax ?? (options.
Max
== null || (_type is KeyDataViewType && _max >= 1));