enrich_affiliations_ae_members¶
src.enrichers.enrich_affiliations_ae_members
¶
Enrich author affiliations using AE (Artifact Evaluation) committee member data.
AE members are scraped from conference websites and have ~99.5% affiliation
coverage. This enricher is fully offline — it reads the existing
ae_members.json file and matches author names to fill in missing
affiliations.
load_ae_members(data_dir: str) -> dict[str, str]
¶
Load AE member data and build a name → affiliation mapping.
Returns dict mapping normalized author name → affiliation string. The most recent committee appearance wins (AE members list is sorted by frequency, so first occurrence is the most active member).
Source code in src/enrichers/enrich_affiliations_ae_members.py
23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 | |
enrich_affiliations(authors_file: Path, output_file: Path, data_dir: str, max_authors: Optional[int] = None, dry_run: bool = False, verbose: bool = False) -> dict[str, int]
¶
Enrich author affiliations from AE committee member data.
Only fills in missing affiliations — does NOT overwrite existing ones (unlike CSRankings which takes precedence as a curated source).
Source code in src/enrichers/enrich_affiliations_ae_members.py
50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 | |