9 references to ScoreSchemaFactory
Microsoft.ML.Core.Tests (2)
UnitTests\ScoreSchemaTest.cs (2)
40var sequenceSchema = ScoreSchemaFactory.CreateSequencePredictionSchema(expectedScoreColumnType, 97var sequenceSchema = ScoreSchemaFactory.CreateSequencePredictionSchema(expectedScoreColumnType,
Microsoft.ML.Data (4)
Prediction\Calibrator.cs (1)
670OutputSchema = ScoreSchemaFactory.CreateBinaryClassificationSchema();
Scorers\SchemaBindablePredictorWrapper.cs (3)
356new SingleValueRowMapper(schema, this, ScoreSchemaFactory.Create(ScoreType, _scoreColumnKind)); 525OutputSchema = ScoreSchemaFactory.CreateBinaryClassificationSchema(); 696new SingleValueRowMapper(schema, this, ScoreSchemaFactory.CreateQuantileRegressionSchema(ScoreType, _quantiles));
Microsoft.ML.Ensemble (1)
PipelineEnsemble.cs (1)
50OutputSchema = ScoreSchemaFactory.Create(Parent.ScoreType, Parent._scoreColumnKind);
Microsoft.ML.Recommender (1)
MatrixFactorizationPredictor.cs (1)
317return new RowMapper(env, this, schema, ScoreSchemaFactory.Create(OutputType, AnnotationUtils.Const.ScoreColumnKind.Regression));
Microsoft.ML.StandardTrainers (1)
FactorizationMachine\FieldAwareFactorizationMachineModelParameters.cs (1)
240=> new FieldAwareFactorizationMachineScalarRowMapper(env, schema, ScoreSchemaFactory.CreateBinaryClassificationSchema(), this);