9 references to ColumnConcatenatingEstimator
Microsoft.ML.Data (1)
Transforms\ExtensionsCatalog.cs (1)
116=> new ColumnConcatenatingEstimator(CatalogUtils.GetEnvironment(catalog), outputColumnName, inputColumnNames);
Microsoft.ML.PerformanceTests (2)
PredictionEngineBench.cs (1)
57var pipeline = new ColumnConcatenatingEstimator(env, "Features", new[] { "SepalLength", "SepalWidth", "PetalLength", "PetalWidth" })
StochasticDualCoordinateAscentClassifierBench.cs (1)
78var pipeline = new ColumnConcatenatingEstimator(_mlContext, "Features", new[] { "SepalLength", "SepalWidth", "PetalLength", "PetalWidth" })
Microsoft.ML.TensorFlow.Tests (2)
TensorflowTests.cs (2)
153.Append(new ColumnConcatenatingEstimator(_mlContext, "Features", "Output")) 1163.Append(new ColumnConcatenatingEstimator(_mlContext, "Features", "Output"))
Microsoft.ML.Tests (3)
Scenarios\Api\Estimators\DecomposableTrainAndPredict.cs (1)
33var pipeline = new ColumnConcatenatingEstimator(ml, "Features", "SepalLength", "SepalWidth", "PetalLength", "PetalWidth")
Scenarios\Api\Estimators\Extensibility.cs (1)
41var pipeline = new ColumnConcatenatingEstimator(ml, "Features", "SepalLength", "SepalWidth", "PetalLength", "PetalWidth")
TrainerEstimators\MetalinearEstimators.cs (1)
97var pipeline = new ColumnConcatenatingEstimator(Env, "Vars", "SepalLength", "SepalWidth", "PetalLength", "PetalWidth")
Microsoft.ML.Transforms (1)
Text\WordBagTransform.cs (1)
690estimator = estimator.Append<ITransformer>(new ColumnConcatenatingEstimator(env, col.Name, col.Source));