6 implementations of GetSummaryInKeyValuePairs
Microsoft.ML.Data (1)
Prediction\Calibrator.cs (1)
257IList<KeyValuePair<string, object>> ICanGetSummaryInKeyValuePairs.GetSummaryInKeyValuePairs(RoleMappedSchema schema)
Microsoft.ML.Ensemble (1)
PipelineEnsemble.cs (1)
701IList<KeyValuePair<string, object>> ICanGetSummaryInKeyValuePairs.GetSummaryInKeyValuePairs(RoleMappedSchema schema)
Microsoft.ML.FastTree (1)
FastTree.cs (1)
3165IList<KeyValuePair<string, object>> ICanGetSummaryInKeyValuePairs.GetSummaryInKeyValuePairs(RoleMappedSchema schema)
Microsoft.ML.StandardTrainers (3)
Standard\LinearModelParameters.cs (2)
536IList<KeyValuePair<string, object>> ICanGetSummaryInKeyValuePairs.GetSummaryInKeyValuePairs(RoleMappedSchema schema) 681IList<KeyValuePair<string, object>> ICanGetSummaryInKeyValuePairs.GetSummaryInKeyValuePairs(RoleMappedSchema schema)
Standard\LogisticRegression\MulticlassLogisticRegression.cs (1)
832IList<KeyValuePair<string, object>> ICanGetSummaryInKeyValuePairs.GetSummaryInKeyValuePairs(RoleMappedSchema schema)
5 references to GetSummaryInKeyValuePairs
Microsoft.ML.Core.Tests (1)
UnitTests\TestEntryPoints.cs (1)
2244var kvps = summaryKvps.GetSummaryInKeyValuePairs(null);
Microsoft.ML.Data (1)
Prediction\Calibrator.cs (1)
262return saver.GetSummaryInKeyValuePairs(schema);
Microsoft.ML.Ensemble (1)
PipelineEnsemble.cs (1)
732var listCur = summaryKvps.GetSummaryInKeyValuePairs(rmd.Schema);
Microsoft.ML.FastTree (1)
FastTree.cs (1)
3139foreach (var pair in ((ICanGetSummaryInKeyValuePairs)this).GetSummaryInKeyValuePairs(schema))
Microsoft.ML.StandardTrainers (1)
Standard\LogisticRegression\MulticlassLogisticRegression.cs (1)
876foreach (var namedValues in ((ICanGetSummaryInKeyValuePairs)this).GetSummaryInKeyValuePairs(schema))