1 write to Env
Microsoft.ML.FastTree (1)
TreeEnsembleFeaturizationEstimator.cs (1)
87
Env
= env;
11 references to Env
Microsoft.ML.FastTree (11)
TreeEnsembleFeaturizationEstimator.cs (11)
89
throw
Env
.Except(nameof(options), "The " + nameof(options.InputColumnName) + " cannot be null.");
91
throw
Env
.Except($"{nameof(OptionsBase.TreesColumnName)}, {nameof(OptionsBase.LeavesColumnName)}, and {nameof(OptionsBase.PathsColumnName)} cannot be all null at the same time. " +
115
return new TreeEnsembleFeaturizationTransformer(
Env
, input.Schema, input.Schema[FeatureColumnName], model,
129
Env
.CheckValue(inputSchema, nameof(inputSchema));
132
throw
Env
.ExceptSchemaMismatch(nameof(inputSchema), "input", FeatureColumnName);
244
var trainer = new FastTreeBinaryTrainer(
Env
, _trainerOptions);
287
var trainer = new FastTreeRegressionTrainer(
Env
, _trainerOptions);
330
var trainer = new FastForestBinaryTrainer(
Env
, _trainerOptions);
373
var trainer = new FastForestRegressionTrainer(
Env
, _trainerOptions);
416
var trainer = new FastTreeRankingTrainer(
Env
, _trainerOptions);
459
var trainer = new FastTreeTweedieTrainer(
Env
, _trainerOptions);