21 references to EstimatorChain
Microsoft.ML.AutoML (3)
Experiment\SuggestedPipeline.cs (1)
116IEstimator<ITransformer> pipeline = new EstimatorChain<ITransformer>();
SweepableEstimator\SweepableEstimatorPipeline.cs (1)
78var pipeline = new EstimatorChain<ITransformer>();
SweepableEstimator\SweepablePipeline.cs (1)
87var pipeline = new EstimatorChain<ITransformer>();
Microsoft.ML.AutoML.Samples (1)
Sweepable\SweepableLightGBMBinaryExperiment.cs (1)
55var pipeline = new EstimatorChain<ITransformer>().Append(lgbm);
Microsoft.ML.Data (3)
DataLoadSave\CompositeLoaderEstimator.cs (1)
24_estimatorChain = estimatorChain ?? new EstimatorChain<TLastTransformer>();
DataLoadSave\EstimatorExtensions.cs (2)
57return new EstimatorChain<ITransformer>().Append(start).Append(estimator, scope); 71return new EstimatorChain<ITransformer>().Append(start).AppendCacheCheckpoint(env);
Microsoft.ML.DnnImageFeaturizer.AlexNet (1)
AlexNetExtension.cs (1)
39var modelChain = new EstimatorChain<ColumnCopyingTransformer>();
Microsoft.ML.DnnImageFeaturizer.ResNet101 (1)
ResNet101Extension.cs (1)
39var modelChain = new EstimatorChain<ColumnCopyingTransformer>();
Microsoft.ML.DnnImageFeaturizer.ResNet18 (1)
ResNet18Extension.cs (1)
39var modelChain = new EstimatorChain<ColumnCopyingTransformer>();
Microsoft.ML.DnnImageFeaturizer.ResNet50 (1)
ResNet50Extension.cs (1)
39var modelChain = new EstimatorChain<ColumnCopyingTransformer>();
Microsoft.ML.Tests (2)
CachingTests.cs (1)
74new EstimatorChain<ITransformer>().AppendCacheCheckpoint(ML)
OnnxConversionTest.cs (1)
2202var chain = new EstimatorChain<ITransformer>().Append(pipeline);
Microsoft.ML.TorchSharp.Tests (6)
NerTests.cs (3)
69var chain = new EstimatorChain<ITransformer>(); 148var chain = new EstimatorChain<ITransformer>(); 222var chain = new EstimatorChain<ITransformer>();
ObjectDetectionTests.cs (1)
44var chain = new EstimatorChain<ITransformer>();
QATests.cs (1)
42var chain = new EstimatorChain<ITransformer>();
TextClassificationTests.cs (1)
97var chain = new EstimatorChain<ITransformer>();
Microsoft.ML.Transforms (2)
Text\WordBagTransform.cs (2)
464var chain = new EstimatorChain<ITransformer>(); 682var estimator = new EstimatorChain<ITransformer>();