File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/Microsoft.ML.Data/Evaluators/Metrics Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ public sealed class RankingMetrics
15
15
{
16
16
/// <summary>
17
17
/// 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>
19
19
/// </summary>
20
20
public IReadOnlyList < double > NormalizedDiscountedCumulativeGains { get ; }
21
21
@@ -24,7 +24,7 @@ public sealed class RankingMetrics
24
24
/// Discounted Cumulative gain is the sum of the gains, for all the instances i,
25
25
/// normalized by the natural logarithm of the instance + 1.
26
26
/// 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>
28
28
/// </summary>
29
29
/// <remarks><a href="https://en.wikipedia.org/wiki/Discounted_cumulative_gain">Discounted Cumulative gain.</a></remarks>
30
30
public IReadOnlyList < double > DiscountedCumulativeGains { get ; }
@@ -53,4 +53,4 @@ internal RankingMetrics(double[] dcg, double[] ndcg)
53
53
NormalizedDiscountedCumulativeGains = ndcg . ToImmutableArray ( ) ;
54
54
}
55
55
}
56
- }
56
+ }
You can’t perform that action at this time.
0 commit comments