6 references to Create
Microsoft.ML.Data (4)
Scorers\SchemaBindablePredictorWrapper.cs (1)
356new SingleValueRowMapper(schema, this, ScoreSchemaFactory.Create(ScoreType, _scoreColumnKind));
Scorers\ScoreSchemaFactory.cs (3)
54var partialSchema = Create(NumberDataViewType.Single, AnnotationUtils.Const.ScoreColumnKind.BinaryClassification, scoreColumnName); 75/// This is very similar to <see cref="Create(DataViewType, string, string)"/> but adds one extra metadata field to the only score column. 87var partialSchema = Create(new VectorDataViewType(scoreType as PrimitiveDataViewType, quantiles.Length), AnnotationUtils.Const.ScoreColumnKind.QuantileRegression);
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));