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