We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b157a22 commit 1dc2423Copy full SHA for 1dc2423
docs/samples/Microsoft.ML.Samples/Dynamic/PermutationFeatureImportance.cs
@@ -144,7 +144,7 @@ public static void PFI_BinaryClassification()
144
// rerun the script with a different seed set in the MLContext(), like so:
145
// `var mlContext = new MLContext(seed: 12345);`
146
Console.WriteLine("Feature\tModel Weight\tChange in AUC");
147
- var auc = permutationMetrics.Select(x => x.Auc).ToArray(); // Fetch r-squared as an array
+ var auc = permutationMetrics.Select(x => x.Auc).ToArray(); // Fetch AUC as an array
148
foreach (int i in sortedIndices)
149
{
150
Console.WriteLine($"{featureNames[i]}\t{weights[i]:0.00}\t{auc[i]:G4}");
0 commit comments