siddhm11 commited on
Commit
6f159f9
·
verified ·
1 Parent(s): d58f586

Add V3 eval metrics: nDCG@10=0.9494, hard_neg_auc=0.7380

Browse files
production_model/eval_metrics_v3.json ADDED
@@ -0,0 +1,91 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "model": "LightGBM LambdaRank V3",
3
+ "description": "Trained on cross-survey authority labels with 13 graph-based features",
4
+ "num_features": 13,
5
+ "features": [
6
+ "candidate_num_cited_by",
7
+ "candidate_num_references",
8
+ "survey_num_references",
9
+ "co_citation_count",
10
+ "bibliographic_coupling",
11
+ "jaccard_refs",
12
+ "adamic_adar",
13
+ "n_surveys_citing",
14
+ "n_total_citations",
15
+ "cited_by_survey_refs",
16
+ "candidate_cites_survey_refs",
17
+ "shared_citers_with_survey",
18
+ "hub_score"
19
+ ],
20
+ "training": {
21
+ "train_rows": 58749,
22
+ "train_queries": 486,
23
+ "eval_rows": 1825,
24
+ "eval_queries": 14,
25
+ "best_iteration": 1,
26
+ "training_time_seconds": 0.4
27
+ },
28
+ "eval_metrics": {
29
+ "ndcg@10": 0.9515,
30
+ "ndcg@20": 0.9607,
31
+ "mrr": 0.9524,
32
+ "hard_neg_auc": 0.7364
33
+ },
34
+ "train_metrics": {
35
+ "ndcg@10": 0.9494,
36
+ "hard_neg_auc": 0.738
37
+ },
38
+ "comparison": {
39
+ "Random": {
40
+ "ndcg@10": 0.2356,
41
+ "hard_neg_auc": 0.5039
42
+ },
43
+ "CitationCount": {
44
+ "ndcg@10": 0.8371,
45
+ "hard_neg_auc": 0.6277
46
+ },
47
+ "Authority": {
48
+ "ndcg@10": 0.929,
49
+ "hard_neg_auc": 0.6463
50
+ },
51
+ "V3_LightGBM": {
52
+ "ndcg@10": 0.9494,
53
+ "hard_neg_auc": 0.738
54
+ },
55
+ "Oracle": {
56
+ "ndcg@10": 1.0,
57
+ "hard_neg_auc": 1.0
58
+ }
59
+ },
60
+ "feature_importance": [
61
+ {
62
+ "feature": "n_surveys_citing",
63
+ "importance": 1607.3
64
+ },
65
+ {
66
+ "feature": "hub_score",
67
+ "importance": 39.8
68
+ },
69
+ {
70
+ "feature": "survey_num_references",
71
+ "importance": 33.0
72
+ },
73
+ {
74
+ "feature": "adamic_adar",
75
+ "importance": 5.8
76
+ },
77
+ {
78
+ "feature": "candidate_num_references",
79
+ "importance": 3.3
80
+ },
81
+ {
82
+ "feature": "jaccard_refs",
83
+ "importance": 2.7
84
+ },
85
+ {
86
+ "feature": "co_citation_count",
87
+ "importance": 2.4
88
+ }
89
+ ],
90
+ "key_insight": "V3 improves hard_neg_auc from 0.628 (CitationCount) to 0.738 (+17.5% relative). This means V3 can tell the difference between papers an expert included vs excluded 73.8% of the time, vs 62.8% for pure popularity. The n_surveys_citing feature dominates \u2014 cross-survey consensus is the strongest signal for paper importance beyond raw citation count."
91
+ }