Skip to content

Commit 74090d6

Browse files
committed
fixing nits
1 parent 889988c commit 74090d6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Microsoft.ML.Data/Evaluators/Metrics/ConfusionMatrix.cs

+3-3
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ public sealed class ConfusionMatrix
5151

5252
/// <summary>
5353
/// The confusion matrix as a structured type, built from the counts of the confusion table <see cref="IDataView"/> that the <see cref="BinaryClassifierEvaluator"/> or
54-
/// the <see cref="MulticlassClassificationEvaluator"/> construct.
54+
/// the <see cref="MulticlassClassificationEvaluator"/> constructor.
5555
/// </summary>
5656
/// <param name="host">The IHost instance. </param>
5757
/// <param name="precision">The values of precision per class.</param>
@@ -96,8 +96,8 @@ internal ConfusionMatrix(IHost host, double[] precision, double[] recall, double
9696
/// Returns a human readable representation of the confusion table.
9797
/// </summary>
9898
/// <returns></returns>
99-
public string GetFormattedConfusionTable() {
100-
99+
public string GetFormattedConfusionTable()
100+
{
101101
if(_formattedConfusionMatrix == null)
102102
_formattedConfusionMatrix = MetricWriter.GetConfusionTableAsString(this, false);
103103

0 commit comments

Comments
 (0)