Skip to content

Commit 46ede66

Browse files
justinormontcodemzs
authored andcommitted
1 parent 7c06785 commit 46ede66

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ public sealed class RankingMetrics
1515
{
1616
/// <summary>
1717
/// Array of normalized discounted cumulative gains where i-th element represent NDCG@i.
18-
/// <image src="https://github.com/dotnet/machinelearning/tree/master/docs/images/NDCG.png"></image>
18+
/// <image src="https://github.com/dotnet/machinelearning/blob/3cdd3c8b32705e91dcf46c429ee34196163af6da/docs/images/NDCG.png?raw=true"></image>
1919
/// </summary>
2020
public IReadOnlyList<double> NormalizedDiscountedCumulativeGains { get; }
2121

@@ -24,7 +24,7 @@ public sealed class RankingMetrics
2424
/// Discounted Cumulative gain is the sum of the gains, for all the instances i,
2525
/// normalized by the natural logarithm of the instance + 1.
2626
/// Note that unline the Wikipedia article, ML.Net uses the natural logarithm.
27-
/// <image src="https://github.com/dotnet/machinelearning/tree/master/docs/images/DCG.png"></image>
27+
/// <image src="https://github.com/dotnet/machinelearning/blob/3cdd3c8b32705e91dcf46c429ee34196163af6da/docs/images/DCG.png?raw=true"></image>
2828
/// </summary>
2929
/// <remarks><a href="https://en.wikipedia.org/wiki/Discounted_cumulative_gain">Discounted Cumulative gain.</a></remarks>
3030
public IReadOnlyList<double> DiscountedCumulativeGains { get; }
@@ -53,4 +53,4 @@ internal RankingMetrics(double[] dcg, double[] ndcg)
5353
NormalizedDiscountedCumulativeGains = ndcg.ToImmutableArray();
5454
}
5555
}
56-
}
56+
}

0 commit comments

Comments
 (0)