REVIEW 3 major objections 5 minor 28 references
CRAWLDoc: A Dataset for Robust Ranking of Bibliographic Documents
T0 review · 3 major / 5 minor · reviewed 2026-08-07 · deepseek-v4-flash
Pith's one-line read One DOI landing page can rank linked metadata sources almost perfectly
desk verdict The dataset is a genuine contribution; the near-perfect ranking scores are not yet convincing without a baseline that isolates URL/anchor overlap. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The load-bearing mechanism is document-as-query ranking with a shared embedding space. A small language model (jina-embeddings-v2, a BERT-style encoder) is fine-tuned with contrastive InfoNCE loss; each linked document is turned into one string of anchor text, URL, and page text separated by [SEP], and the landing page is embedded as the query. Retrieval is then a maximum inner product search between the query embedding and document embeddings. Layout information is folded in by extracting text with bounding boxes and serializing it into a uniform JSON text format, which is why the method can handle both HTML and PDF sources.
What would settle it
Re-run the Table 1 evaluation with the URL field and anchor texts removed from both query and document inputs, keeping only rendered page text: if MRR, MAP, and nDCG fall well below 0.9, the ranking is largely surface overlap rather than layout-independent semantic understanding.
Extended reading notes
Core claim
The central discovery claim is that a single seed page—the DOI landing page—can serve as a query that separates linked documents about the same publication from unrelated ones, without relying on publisher-specific templates. CRAWLDoc encodes each linked resource by concatenating its anchor text, URL, and rendered content with a [SEP] separator, embeds the landing page with a query encoder and the resources with a document encoder, and ranks by maximum inner product search. On the new dataset of 600 publications with 72,483 labeled outgoing links, it reaches MRR 0.967, MAP 0.987, and nDCG 0.961; removing layout information lowers these to 0.950, 0.976, and 0.952, and leaving out the training publisher yields 0.959, 0.968, and 0.961. The authors interpret the small gap between in-distribution and out-of-distribution results as evidence that the model learned generalizable features of document relevance rather than publisher-specific layouts.
Load-bearing premise
The central premise is that relevance to the publication is captured by embedding the concatenation of anchor text, URL, and document content, and that all needed sources sit within one link of the DOI landing page; if URL or anchor overlap alone drives the ranking, the claimed layout-independent semantic generalization is not established.
Editorial extensions
If this is right
- CRAWLDoc gives bibliographic databases such as DBLP a way to shortlist candidate metadata sources without per-publisher wrappers.
- The leave-one-out results imply that a model trained on five publishers transfers to a sixth with almost no loss in ranking quality.
- Removing layout information costs only about one to two metric points, so the method remains usable when bounding boxes are unavailable.
- At a cut-off of k=5, the system balances precision and recall well, with recall reaching 0.870 and F1 peaking at k=4 and k=5, matching the average number of relevant documents per publication.
Reading between the lines
- I infer from the absence of ablations that surface overlap of URLs, titles, or anchor texts may be doing much of the ranking work; deleting URL strings from the input in a follow-up experiment would settle this.
- The one-hop crawl assumption likely caps recall for publications whose relevant material lives two or more clicks away (e.g., via a reference-list page), so multi-hop crawling is a natural stress test.
- The same document-as-query recipe could be applied outside bibliographic data, for instance to discover related resources for any seed URI whose canonical page is known.
- Because the robustness test uses publishers that share conventional academic page designs, the claim of layout independence is best read as applying within that design space.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper introduces CRAWLDoc, a method and dataset for ranking web documents linked from a publication's DOI-resolved landing page. The landing page is treated as a query, and linked documents (PDFs, supplementary materials, ORCID profiles, etc.) are embedded along with their anchor texts and URLs using jina-embeddings-v2; the ranking is produced by maximum inner product search. The authors contribute a manually labeled dataset of 600 publications from six CS publishers, comprising 72,483 linked documents with binary relevance labels and author-affiliation metadata. Experiments report MRR 0.967, MAP 0.987, and nDCG 0.961 on the main test set, with a leave-one-publisher-out robustness check giving average MRR 0.959, MAP 0.968, nDCG 0.961.
Significance. If the near-perfect ranking scores reflect genuine semantic, layout-independent relevance identification, the system would be a practical tool for bibliographic metadata harvesting and the dataset would be a valuable resource for studying web-document relevance in scholarly contexts. The manual annotation of 72,483 linked documents across six publishers is a concrete contribution, as is the public release of code and labels. The leave-one-out evaluation is a sensible design for probing publisher generalization. However, the significance of the ranking results hinges on whether the model is learning content relevance rather than exploiting superficial URL or anchor-text overlap; the paper currently does not provide the baselines or ablations needed to establish that distinction.
major comments (3)
- [Section 3, Neural Document Ranking; Section 5, Results] The input representation is constructed by concatenating anchor text, URL, and document content with [SEP] tokens. The paper never isolates the contribution of URL and anchor-text fields. On publisher landing pages, the URLs of relevant linked documents (PDF, supplementary material, ORCID) frequently contain the paper's DOI or title, and the query landing-page URL contains the same DOI; therefore the reported MRR 0.967 and MAP 0.987 could be largely driven by token overlap rather than semantic content. The layout ablation in Section 5 ("results without layout information", MRR 0.950, MAP 0.976, nDCG 0.952) does not address this because URL and anchor text remain in the input. A content-only condition (document text without URL/anchor), a URL/anchor-only condition, and a non-neural baseline such as BM25 or exact substring matching on URL/title are needed to support the claim of semantic, layout-independent ranking.
- [Section 4, Dataset] The test split is 10 publications per publisher (80/10/10 split of 100 publications per publisher), giving 60 query-level observations in total. No confidence intervals or significance tests are reported for the metrics in Tables 1 and 3. For example, Springer's MRR drops from 0.800 to 0.757 between the in-distribution and leave-one-out settings, but with 10 queries this difference may be within noise. The authors should report per-query variance, bootstrap confidence intervals, and paired significance tests (e.g., permutation tests) to substantiate the robustness claims.
- [Section 4, Dataset; self-link removal] The self-link removal step excludes exact self-similarity (links to the landing page itself) but does not account for URL substring overlap, where a linked URL contains the query URL's DOI or title as a substring. Since URLs are part of the model input, such overlap can trivially inflate ranking scores. The paper should quantify how many test candidates have partial URL/title overlap with the query, and report performance separately on the subset of candidates without such overlap, to assess whether the high scores survive when lexical shortcuts are unavailable.
minor comments (5)
- [Section 5, Table 1] For Springer, MRR 0.800 and nDCG 0.800 with MAP 0.998 appear to warrant a brief explanation; the combination suggests the first relevant document is sometimes not at rank 1 while almost all relevant documents are retrieved at high ranks, but the paper does not discuss this pattern.
- [Section 5, Results] The phrase "less than one point" and "less than two points" should be clarified as percentage points (e.g., MRR 0.967 vs. 0.959 is a 0.8 percentage-point difference), since "one point" is ambiguous.
- [Section 3, Figure 2] The ablation described as "without layout information" is not fully specified; it should state which fields are removed from the JSON representation (e.g., bounding boxes only, or also anchor/URL fields) so readers can understand what the ablation actually tests.
- [Section 4, Dataset] There is a missing space in "an average of only5.45" (should be "only 5.45").
- [References] Several reference URLs contain line-break artifacts (e.g., "V ol-2080", "V ol-3178") that should be corrected for the camera-ready version.
Circularity Check
No circularity: CRAWLDoc is an empirical supervised retrieval system evaluated on its own manually labeled dataset with a proper train/test split; no derivation or prediction reduces to its inputs by construction.
full rationale
The paper makes no formal derivation that could be circular. Its central claim is empirical: that a fine-tuned neural retriever ranks relevant linked documents highly, evaluated against a manually labeled dataset of 72,483 linked documents from 600 publications. The input representation concatenates anchor text, URL, and document content (Section 3), and the query is the DOI landing page. Relevance labels were created manually and independently of the model (Section 4), and the test set excludes exact self-links to prevent trivial self-similarity inflation. The laterablations remove layout information only, and the leave-one-out publisher experiment tests held-out publishers; while these settings do not isolate URL/anchor overlap as a shortcut, the absence of such an ablation is a methodological weakness, not a circular reduction. No fitted parameter is renamed as a prediction, no result is imported from the authors' prior work, and no uniqueness or ansatz is justified by self-citation. The dataset and code are released externally, and the evaluation is self-contained against real manually labeled data. Therefore the paper does not exhibit the specific circularity patterns this analysis targets, and the score is 0.
Assumptions & free parameters
free parameters (4)
- learning_rate =
3e-05
- gradient_accumulation_steps =
32
- early_stopping_patience =
5
- max_sequence_tokens =
2048
assumptions (4)
- domain assumption All necessary metadata sources are within one hop of the DOI landing page.
- domain assumption The manual binary relevance labels are accurate.
- domain assumption Embedding the concatenation of anchor text, URL, and document content captures relevance beyond trivial lexical or URL overlap.
- domain assumption Converting HTML and PDF into a uniform text-plus-bounding-box JSON preserves the information needed to judge relevance.
Cite this review
Pith. "Pith review of CRAWLDoc: A Dataset for Robust Ranking of Bibliographic Documents." pith.science (2026). https://pith.science/paper/UOJQ4WG3
@misc{pith2026250603822,
author = {Pith},
title = {Pith review of: CRAWLDoc: A Dataset for Robust Ranking of Bibliographic Documents},
year = {2026},
howpublished = {\url{https://pith.science/paper/UOJQ4WG3}},
note = {Machine review of arXiv:2506.03822}
}
read the original abstract
Publication databases rely on accurate metadata extraction from diverse web sources, yet variations in web layouts and data formats present challenges for metadata providers. This paper introduces CRAWLDoc, a new method for contextual ranking of linked web documents. Starting with a publication's URL, such as a digital object identifier, CRAWLDoc retrieves the landing page and all linked web resources, including PDFs, ORCID profiles, and supplementary materials. It embeds these resources, along with anchor texts and the URLs, into a unified representation. For evaluating CRAWLDoc, we have created a new, manually labeled dataset of 600 publications from six top publishers in computer science. Our method CRAWLDoc demonstrates a robust and layout-independent ranking of relevant documents across publishers and data formats. It lays the foundation for improved metadata extraction from web documents with various layouts and formats. Our source code and dataset can be accessed at https://github.com/FKarl/CRAWLDoc.
Figures
Reference graph
Works this paper leans on
-
[1]
Grobid, https://github.com/kermitt2/grobid, 2008–2023
work page 2008
-
[2]
D. Tkaczyk, P. Szostek, M. Fedoryszak, P. J. Dendek, L. Bolikowski, CERMINE: automatic extrac- tion of structured metadata from scientific literature, Int. J. Document Anal. Recognit. 18 (2015) 317–335. URL: https://doi.org/10.1007/s10032-015-0249-8. doi: 10.1007/S10032-015-0249-8
-
[3]
R. Schenkel, Integrating and exploiting public metadata sources in a bibliographic information system, in: P. Mayr, I. Frommholz, G. Cabanac (Eds.), Proceedings of the 7th International Workshop on Bibliometric-enhanced Information Retrieval (BIR 2018) co-located with the 40th European Conference on Information Retrieval (ECIR 2018), Grenoble, France, Mar...
work page 2018
-
[4]
Ley, DBLP - some lessons learned, Proc
M. Ley, DBLP - some lessons learned, Proc. VLDB Endow. 2 (2009) 1493–1500. URL: http: //www.vldb.org/pvldb/vol2/vldb09-98.pdf. doi:10.14778/1687553.1687577
arXiv 2009
-
[5]
Y . Zhu, H. Yuan, S. Wang, J. Liu, W. Liu, C. Deng, Z. Dou, J. Wen, Large language models for information retrieval: A survey, CoRR abs/2308.07107 (2023). URL: https://doi.org/10.48550/ arXiv.2308.07107. doi:10.48550/ARXIV.2308.07107. arXiv:2308.07107
- [7]
-
[8]
Y . Zhang, M. M. Rahman, A. Braylan, B. Dang, H. Chang, H. Kim, Q. McNamara, A. Angert, E. Banner, V . Khetan, T. McDonnell, A. T. Nguyen, D. Xu, B. C. Wallace, M. Lease, Neural information retrieval: A literature review, CoRR abs/1611.06792 (2016). URL: http://arxiv.org/abs/ 1611.06792. arXiv:1611.06792
arXiv 2016
-
[9]
B. Mitra, N. Craswell, An introduction to neural information retrieval, Found. Trends Inf. Retr. 13 (2018) 1–126. URL: https://doi.org/10.1561/1500000061. doi:10.1561/1500000061
Show all 28 references
-
[10]
Abbasiantaeb, S
Z. Abbasiantaeb, S. Momtazi, Text-based question answering from information retrieval and deep neural network perspectives: A survey, WIREs Data Mining Knowl. Discov. 11 (2021). URL: https://doi.org/10.1002/widm.1412. doi:10.1002/WIDM.1412
2021 doi
-
[11]
Devlin, M
J. Devlin, M. Chang, K. Lee, K. Toutanova, BERT: pre-training of deep bidirectional transformers for language understanding, in: J. Burstein, C. Doran, T. Solorio (Eds.), Proceedings of the 2019 Conference of the North American Chapter of the Association for Computational Ling...
2019
-
[12]
X. Tian, J. Wang, Retrieval of scientific documents based on HFS and BERT, IEEE Access 9 (2021) 8708–8717. URL: https://doi.org/10.1109/ACCESS.2021.3049391. doi:10.1109/ACCESS. 2021.3049391
2021
-
[13]
J. Wang, J. X. Huang, X. Tu, J. Wang, A. J. Huang, M. T. R. Laskar, A. Bhuiyan, Utilizing BERT for information retrieval: Survey, applications, resources, and challenges, ACM Comput. Surv. 56 (2024) 185:1–185:33. URL: https://doi.org/10.1145/3648471. doi:10.1145/3648471
2024 doi
-
[14]
M. Li, É. Gaussier, Intra-document block pre-ranking for bert-based long document information retrieval - abstract, in: L. Tamine, E. Amigó, J. Mothe (Eds.), Proceedings of the 2nd Joint Conference of the Information Retrieval Communities in Europe (CIRCLE 2022), Samatan, Gers...
2022
-
[15]
MacAvaney, A
S. MacAvaney, A. Yates, A. Cohan, N. Goharian, CEDR: contextualized embeddings for document ranking, in: B. Piwowarski, M. Chevalier, É. Gaussier, Y . Maarek, J. Nie, F. Scholer (Eds.), Proceedings of the 42nd International ACM SIGIR Conference on Research and Development in I...
2019
-
[16]
Khattab, M
O. Khattab, M. Zaharia, Colbert: Efficient and effective passage search via contextualized late interaction over BERT, in: J. X. Huang, Y . Chang, X. Cheng, J. Kamps, V . Murdock, J. Wen, Y . Liu (Eds.), Proceedings of the 43rd International ACM SIGIR conference on research an...
2020
-
[17]
Santhanam, O
K. Santhanam, O. Khattab, J. Saad-Falcon, C. Potts, M. Zaharia, Colbertv2: Effective and ef- ficient retrieval via lightweight late interaction, in: M. Carpuat, M. de Marneffe, I. V . M. Ruíz (Eds.), Proceedings of the 2022 Conference of the North American Chapter of the Assoc...
2022 doi
-
[18]
Huang, T
Y . Huang, T. Lv, L. Cui, Y . Lu, F. Wei, Layoutlmv3: Pre-training for document AI with unified text and image masking, in: J. Magalhães, A. D. Bimbo, S. Satoh, N. Sebe, X. Alameda-Pineda, Q. Jin, V . Oria, L. Toni (Eds.), MM ’22: The 30th ACM International Conference on Multi...
2022
- [19]
-
[20]
Perot, K
V . Perot, K. Kang, F. Luisier, G. Su, X. Sun, R. S. Boppana, Z. Wang, J. Mu, H. Zhang, N. Hua, LMDX: language model-based document information extraction and localization, CoRR abs/2309.10952 (2023). URL: https://doi.org/10.48550/arXiv.2309.10952. doi:10.48550/ARXIV. 2309.109...
-
[21]
C. Chen, Z. Shen, D. Klein, G. Stanovsky, D. Downey, K. Lo, Are layout-infused language models robust to layout distribution shifts? A case study with scientific documents, in: A. Rogers, J. L. Boyd-Graber, N. Okazaki (Eds.), Findings of the Association for Computational Lingu...
2023 doi
- [22]
-
[23]
Günther, J
M. Günther, J. Ong, I. Mohr, A. Abdessalem, T. Abel, M. K. Akram, S. Guzman, G. Mastrapas, S. Sturua, B. Wang, M. Werk, N. Wang, H. Xiao, Jina embeddings 2: 8192-token general-purpose text embeddings for long documents, CoRR abs/2310.19923 (2023). URL: https://doi.org/10.48550...
-
[24]
Press, N
O. Press, N. A. Smith, M. Lewis, Train short, test long: Attention with linear biases enables input length extrapolation, in: The Tenth International Conference on Learning Representations, ICLR 2022, Virtual Event, April 25-29, 2022, OpenReview.net, 2022. URL: https://openrev...
2022
-
[25]
van den Oord, Y
A. van den Oord, Y . Li, O. Vinyals, Representation learning with contrastive predictive coding, CoRR abs/1807.03748 (2018). URL: http://arxiv.org/abs/1807.03748. arXiv:1807.03748
2018 arXiv
-
[26]
dblp Team, dblp computer science bibliography – Monthly Snapshot XML Release of April 2024,
2024
-
[27]
Järvelin, J
K. Järvelin, J. Kekäläinen, Cumulated gain-based evaluation of IR techniques, ACM Trans. Inf. Syst. 20 (2002) 422–446. URL: http://doi.acm.org/10.1145/582415.582418. doi:10.1145/582415. 582418
2002
-
[2024]
doi:10.4230/dblp.xml.2024-04-01
URL: https://doi.org/10.4230/dblp.xml.2024-04-01. doi:10.4230/dblp.xml.2024-04-01
2024 doi
- [4186]
Reviewed August 7, 2026 · model on record in the stance chip above.
Discussion (0). Sign in to comment.