6 implementations of ICanGetSummaryInKeyValuePairs
Microsoft.ML.Data (1)
Prediction\Calibrator.cs (1)
187ICanGetSummaryInKeyValuePairs,
Microsoft.ML.Ensemble (1)
PipelineEnsemble.cs (1)
30ISchemaBindableMapper, ICanSaveSummary, ICanGetSummaryInKeyValuePairs
Microsoft.ML.FastTree (1)
FastTree.cs (1)
2779ICanGetSummaryInKeyValuePairs,
Microsoft.ML.StandardTrainers (3)
Standard\LinearModelParameters.cs (2)
420ICanGetSummaryInKeyValuePairs, 610ICanGetSummaryInKeyValuePairs
Standard\LogisticRegression\MulticlassLogisticRegression.cs (1)
421ICanGetSummaryInKeyValuePairs,
18 references to ICanGetSummaryInKeyValuePairs
Microsoft.ML.Core.Tests (2)
UnitTests\TestEntryPoints.cs (2)
2237var summaryKvps = binaryEnsembleCalibrated.Predictor as ICanGetSummaryInKeyValuePairs;
Microsoft.ML.Data (3)
Prediction\Calibrator.cs (3)
257IList<KeyValuePair<string, object>> ICanGetSummaryInKeyValuePairs.GetSummaryInKeyValuePairs(RoleMappedSchema schema) 260var saver = SubModel as ICanGetSummaryInKeyValuePairs;
Microsoft.ML.Ensemble (5)
PipelineEnsemble.cs (5)
693/// - If the model implements <see cref="ICanGetSummaryInKeyValuePairs"/> then the value is the list of Key-Value pairs 696/// - If the model does not implement <see cref="ICanGetSummaryInKeyValuePairs"/> but does implement <see cref="ICanSaveSummary"/>, 701IList<KeyValuePair<string, object>> ICanGetSummaryInKeyValuePairs.GetSummaryInKeyValuePairs(RoleMappedSchema schema) 711var summaryKvps = PredictorModels[i].Predictor as ICanGetSummaryInKeyValuePairs;
Microsoft.ML.FastTree (2)
FastTree.cs (2)
3139foreach (var pair in ((ICanGetSummaryInKeyValuePairs)this).GetSummaryInKeyValuePairs(schema)) 3165IList<KeyValuePair<string, object>> ICanGetSummaryInKeyValuePairs.GetSummaryInKeyValuePairs(RoleMappedSchema schema)
Microsoft.ML.StandardTrainers (6)
Standard\LinearModelParameters.cs (2)
536IList<KeyValuePair<string, object>> ICanGetSummaryInKeyValuePairs.GetSummaryInKeyValuePairs(RoleMappedSchema schema) 681IList<KeyValuePair<string, object>> ICanGetSummaryInKeyValuePairs.GetSummaryInKeyValuePairs(RoleMappedSchema schema)
Standard\LogisticRegression\MulticlassLogisticRegression.cs (2)
832IList<KeyValuePair<string, object>> ICanGetSummaryInKeyValuePairs.GetSummaryInKeyValuePairs(RoleMappedSchema schema) 876foreach (var namedValues in ((ICanGetSummaryInKeyValuePairs)this).GetSummaryInKeyValuePairs(schema))
Standard\ModelStatistics.cs (2)
168/// Support method for linear models and <see cref="ICanGetSummaryInKeyValuePairs"/>. 529/// Support method for linear models and <see cref="ICanGetSummaryInKeyValuePairs"/>.