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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239 | def generate(data_dir: str) -> list[dict] | None:
"""Collect citation counts for non-AE papers and write results."""
data_path = Path(data_dir)
artifacts_path = data_path / "assets" / "data" / "artifacts.json"
build_dir = data_path / "_build"
build_dir.mkdir(parents=True, exist_ok=True)
out_path = build_dir / "baseline_citations.json"
if not artifacts_path.exists():
logger.error("artifacts.json not found at %s", artifacts_path)
return None
artifacts: list[dict] = load_json(artifacts_path)
logger.info("Loaded %d AE artifacts (for exclusion)", len(artifacts))
# Build set of AE titles per conference/year
ae_titles = _build_ae_title_set(artifacts)
logger.info("AE papers span %d conference/year combinations", len(ae_titles))
# Find non-AE papers from DBLP
non_ae_papers = _find_non_ae_papers(ae_titles)
logger.info("%d non-AE papers to fetch citations for", len(non_ae_papers))
if not non_ae_papers:
logger.warning("No non-AE papers found — is DBLP data extracted?")
save_json(out_path, [])
return []
# Deduplicate by normalized title (same paper can appear in DBLP twice)
seen_titles: set[str] = set()
unique: list[dict] = []
for p in non_ae_papers:
norm = normalize_title(p.get("title", ""))
if norm and norm not in seen_titles:
seen_titles.add(norm)
unique.append(p)
logger.info("%d unique non-AE papers after dedup", len(unique))
# Fetch citations
session = create_session()
s2_disabled = os.environ.get("DISABLE_SEMANTIC_SCHOLAR", "").strip() == "1"
s2_timeout_failures = 0
entries: list[dict] = []
cached_count = 0
fetched_count = 0
for i, paper in enumerate(unique):
title = paper.get("title", "")
norm = normalize_title(title)
doi = paper.get("doi", "")
# Cache key uses baseline namespace to avoid collision with AE cache
cache_k = cache_key(doi) if doi else cache_key(norm)
cached = read_cache(CITATION_CACHE_DIR, cache_k, CITATION_CACHE_TTL, BASELINE_CACHE_NS)
if cached is not _MISSING:
entries.append(cached)
cached_count += 1
continue
# Lookup via APIs
openalex_count: int | None = None
s2_count: int | None = None
source = ""
openalex_id = ""
if doi:
time.sleep(OPENALEX_DELAY)
oa = openalex_lookup(doi, session)
if oa:
openalex_count = oa["cited_by_count"]
openalex_id = oa["openalex_id"]
source = "openalex_doi"
if not s2_disabled:
time.sleep(S2_DELAY)
s2_count = s2_lookup(doi, session)
if s2_count is None and s2_timeout_failures < S2_MAX_TIMEOUT_FAILURES:
s2_timeout_failures += 1
if s2_timeout_failures >= S2_MAX_TIMEOUT_FAILURES:
logger.warning(
"Disabling Semantic Scholar after %d timeout failures",
s2_timeout_failures,
)
s2_disabled = True
else:
# No DOI — fall back to OpenAlex title search
time.sleep(OPENALEX_DELAY)
oa = openalex_title_search(title, session)
if oa:
openalex_count = oa["cited_by_count"]
openalex_id = oa["openalex_id"]
source = "openalex_title"
cited_by = best_citation_count(openalex_count, s2_count)
entry = {
"title": title,
"conference": paper.get("conference", ""),
"year": paper.get("year", 0),
"category": paper.get("category", ""),
"ae_paper": False,
"paper_doi": doi,
"openalex_id": openalex_id,
"cited_by_count": cited_by,
"citations_openalex": openalex_count,
"citations_semantic_scholar": s2_count,
"source": source,
}
entries.append(entry)
write_cache(CITATION_CACHE_DIR, cache_k, entry, BASELINE_CACHE_NS)
fetched_count += 1
if (i + 1) % 100 == 0:
logger.info(
"Progress: %d/%d (cached=%d, fetched=%d)",
i + 1,
len(unique),
cached_count,
fetched_count,
)
logger.info(
"Done: %d entries (cached=%d, fetched=%d, with_citations=%d)",
len(entries),
cached_count,
fetched_count,
sum(1 for e in entries if isinstance(e.get("cited_by_count"), int) and e["cited_by_count"] > 0),
)
save_json(out_path, entries)
logger.info("Wrote %s", out_path)
return entries
|