9 references to ScoreSchemaFactory
Microsoft.ML.Core.Tests (2)
UnitTests\ScoreSchemaTest.cs (2)
40
var sequenceSchema =
ScoreSchemaFactory
.CreateSequencePredictionSchema(expectedScoreColumnType,
97
var sequenceSchema =
ScoreSchemaFactory
.CreateSequencePredictionSchema(expectedScoreColumnType,
Microsoft.ML.Data (4)
Prediction\Calibrator.cs (1)
670
OutputSchema =
ScoreSchemaFactory
.CreateBinaryClassificationSchema();
Scorers\SchemaBindablePredictorWrapper.cs (3)
356
new SingleValueRowMapper(schema, this,
ScoreSchemaFactory
.Create(ScoreType, _scoreColumnKind));
525
OutputSchema =
ScoreSchemaFactory
.CreateBinaryClassificationSchema();
696
new SingleValueRowMapper(schema, this,
ScoreSchemaFactory
.CreateQuantileRegressionSchema(ScoreType, _quantiles));
Microsoft.ML.Ensemble (1)
PipelineEnsemble.cs (1)
50
OutputSchema =
ScoreSchemaFactory
.Create(Parent.ScoreType, Parent._scoreColumnKind);
Microsoft.ML.Recommender (1)
MatrixFactorizationPredictor.cs (1)
317
return 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);