42 implementations of GetOutputSchema
Microsoft.ML.Data (10)
DataLoadSave\EstimatorChain.cs (1)
83public SchemaShape GetOutputSchema(SchemaShape inputSchema)
DataLoadSave\EstimatorExtensions.cs (1)
119public SchemaShape GetOutputSchema(SchemaShape inputSchema)
DataLoadSave\TransformWrapper.cs (1)
76public SchemaShape GetOutputSchema(SchemaShape inputSchema)
DataLoadSave\TrivialEstimator.cs (1)
42public abstract SchemaShape GetOutputSchema(SchemaShape inputSchema);
Prediction\CalibratorCatalog.cs (1)
85SchemaShape IEstimator<CalibratorTransformer<TICalibrator>>.GetOutputSchema(SchemaShape inputSchema)
Training\TrainerEstimatorBase.cs (1)
79public SchemaShape GetOutputSchema(SchemaShape inputSchema)
Transforms\ColumnConcatenatingEstimator.cs (1)
145public SchemaShape GetOutputSchema(SchemaShape inputSchema)
Transforms\Hashing.cs (1)
1953public SchemaShape GetOutputSchema(SchemaShape inputSchema)
Transforms\Normalizer.cs (1)
344public SchemaShape GetOutputSchema(SchemaShape inputSchema)
Transforms\ValueToKeyMappingEstimator.cs (1)
178public SchemaShape GetOutputSchema(SchemaShape inputSchema)
Microsoft.ML.FastTree (1)
TreeEnsembleFeaturizationEstimator.cs (1)
127public SchemaShape GetOutputSchema(SchemaShape inputSchema)
Microsoft.ML.Mkl.Components (1)
VectorWhitening.cs (1)
890public SchemaShape GetOutputSchema(SchemaShape inputSchema)
Microsoft.ML.OnnxTransformer (1)
DnnImageFeaturizerTransform.cs (1)
112public SchemaShape GetOutputSchema(SchemaShape inputSchema)
Microsoft.ML.PCA (1)
PcaTransformer.cs (1)
815public SchemaShape GetOutputSchema(SchemaShape inputSchema)
Microsoft.ML.Recommender (1)
MatrixFactorizationTrainer.cs (1)
554public SchemaShape GetOutputSchema(SchemaShape inputSchema)
Microsoft.ML.StandardTrainers (3)
FactorizationMachine\FactorizationMachineTrainer.cs (1)
621public SchemaShape GetOutputSchema(SchemaShape inputSchema)
Standard\MulticlassClassification\MetaMulticlassTrainer.cs (1)
141public SchemaShape GetOutputSchema(SchemaShape inputSchema)
Standard\Simple\SimpleTrainers.cs (1)
310public SchemaShape GetOutputSchema(SchemaShape inputSchema)
Microsoft.ML.TensorFlow (1)
TensorflowTransform.cs (1)
1030public SchemaShape GetOutputSchema(SchemaShape inputSchema)
Microsoft.ML.TimeSeries (3)
SsaChangePointDetector.cs (1)
297public SchemaShape GetOutputSchema(SchemaShape inputSchema)
SSaForecasting.cs (1)
330public SchemaShape GetOutputSchema(SchemaShape inputSchema)
SsaSpikeDetector.cs (1)
276public SchemaShape GetOutputSchema(SchemaShape inputSchema)
Microsoft.ML.TorchSharp (3)
AutoFormerV2\ObjectDetectionTrainer.cs (1)
438public SchemaShape GetOutputSchema(SchemaShape inputSchema)
Roberta\QATrainer.cs (1)
502public SchemaShape GetOutputSchema(SchemaShape inputSchema)
TorchSharpBaseTrainer.cs (1)
26public abstract SchemaShape GetOutputSchema(SchemaShape inputSchema);
Microsoft.ML.Transforms (16)
CountFeatureSelection.cs (1)
164public SchemaShape GetOutputSchema(SchemaShape inputSchema)
Dracula\CountTableTransformer.cs (1)
320public SchemaShape GetOutputSchema(SchemaShape inputSchema)
Dracula\CountTargetEncodingTransformer.cs (1)
295public SchemaShape GetOutputSchema(SchemaShape inputSchema)
ExpressionTransformer.cs (1)
169public SchemaShape GetOutputSchema(SchemaShape inputSchema)
MissingValueReplacing.cs (1)
1034public SchemaShape GetOutputSchema(SchemaShape inputSchema)
MutualInformationFeatureSelection.cs (1)
219public SchemaShape GetOutputSchema(SchemaShape inputSchema)
OneHotEncoding.cs (1)
328public SchemaShape GetOutputSchema(SchemaShape inputSchema)
OneHotHashEncoding.cs (1)
379public SchemaShape GetOutputSchema(SchemaShape inputSchema)
RandomFourierFeaturizing.cs (1)
722public SchemaShape GetOutputSchema(SchemaShape inputSchema)
Text\LdaTransform.cs (1)
1320public SchemaShape GetOutputSchema(SchemaShape inputSchema)
Text\NgramHashingTransformer.cs (1)
1212public SchemaShape GetOutputSchema(SchemaShape inputSchema)
Text\NgramTransform.cs (1)
1077public SchemaShape GetOutputSchema(SchemaShape inputSchema)
Text\TextFeaturizingEstimator.cs (1)
631public SchemaShape GetOutputSchema(SchemaShape inputSchema)
Text\WordEmbeddingsExtractor.cs (1)
930public SchemaShape GetOutputSchema(SchemaShape inputSchema)
Text\WrappedTextTransformers.cs (2)
216public SchemaShape GetOutputSchema(SchemaShape inputSchema) 397public SchemaShape GetOutputSchema(SchemaShape inputSchema)
Microsoft.ML.Vision (1)
DnnRetrainTransform.cs (1)
1253public SchemaShape GetOutputSchema(SchemaShape inputSchema)
8 references to GetOutputSchema
Microsoft.ML.Data (2)
DataLoadSave\EstimatorChain.cs (1)
87s = est.GetOutputSchema(s);
DataLoadSave\EstimatorExtensions.cs (1)
120=> _est.GetOutputSchema(inputSchema);
Microsoft.ML.TestFramework (4)
DataPipe\TestDataPipeBase.cs (4)
61var outSchemaShape = estimator.GetOutputSchema(SchemaShape.Create(validFitInput.Schema)); 64mustFail(() => estimator.GetOutputSchema(SchemaShape.Create(validTransformInput.Schema))); 70mustFail(() => estimator.GetOutputSchema(SchemaShape.Create(invalidInput.Schema))); 76estimator.GetOutputSchema(SchemaShape.Create(validForFitNotValidForTransformInput.Schema));
Microsoft.ML.Transforms (2)
Text\WordBagTransform.cs (1)
169estimator = estimator.Append(NgramExtractorTransform.CreateEstimator(h, extractorArgs, estimator.GetOutputSchema(inputSchema)));
Text\WrappedTextTransformers.cs (1)
221return estimator.GetOutputSchema(inputSchema);