9 implementations of InputRoleMappedSchema
Microsoft.ML.Data (5)
Prediction\Calibrator.cs (1)
655public RoleMappedSchema InputRoleMappedSchema => _predictor.InputRoleMappedSchema;
Scorers\FeatureContributionCalculation.cs (1)
304public RoleMappedSchema InputRoleMappedSchema { get; }
Scorers\MulticlassClassificationScorer.cs (1)
264public RoleMappedSchema InputRoleMappedSchema => _mapper.InputRoleMappedSchema;
Scorers\SchemaBindablePredictorWrapper.cs (2)
201public RoleMappedSchema InputRoleMappedSchema { get; } 510public RoleMappedSchema InputRoleMappedSchema { get; }
Microsoft.ML.Ensemble (1)
PipelineEnsemble.cs (1)
42public RoleMappedSchema InputRoleMappedSchema { get; }
Microsoft.ML.FastTree (1)
TreeEnsembleFeaturizer.cs (1)
69public RoleMappedSchema InputRoleMappedSchema { get; }
Microsoft.ML.Recommender (1)
MatrixFactorizationPredictor.cs (1)
333public RoleMappedSchema InputRoleMappedSchema { get; }
Microsoft.ML.StandardTrainers (1)
FactorizationMachine\FieldAwareFactorizationMachineUtils.cs (1)
61public RoleMappedSchema InputRoleMappedSchema { get; }
11 references to InputRoleMappedSchema
Microsoft.ML.Data (7)
Prediction\Calibrator.cs (1)
655public RoleMappedSchema InputRoleMappedSchema => _predictor.InputRoleMappedSchema;
Scorers\GenericScorer.cs (3)
77Contracts.Assert(mapper.InputRoleMappedSchema.Schema == input); 216var schema = _bindings.RowMapper.InputRoleMappedSchema; 231var schema = _bindings.RowMapper.InputRoleMappedSchema;
Scorers\MulticlassClassificationScorer.cs (1)
264public RoleMappedSchema InputRoleMappedSchema => _mapper.InputRoleMappedSchema;
Scorers\PredictedLabelScorerBase.cs (2)
342var schema = Bindings.RowMapper.InputRoleMappedSchema; 375var schema = Bindings.RowMapper.InputRoleMappedSchema;
Microsoft.ML.Ensemble (4)
PipelineEnsemble.cs (4)
165Parent.Host.Check(Mappers[i].InputRoleMappedSchema.Label.HasValue, "Mapper was not trained using a label column"); 166var labelCol = Mappers[i].InputRoleMappedSchema.Label.Value; 178if (!Mappers[i].InputRoleMappedSchema.Weight.HasValue) 184var weightCol = Mappers[i].InputRoleMappedSchema.Weight.Value;