--- language: - en license: mit size_categories: - 10K corpus.json  —  retrieval candidates
```json { "doc_id": 1589, "title": "LoRA: Low-Rank Adaptation of Large Language Models", "abstract": "We propose a low-rank adaptation method that freezes pretrained model weights..." } ```
gold100_papers.json  —  test papers
```json { "paper_id": 9745, "title": "EfficientDM: Efficient Quantization-Aware Fine-Tuning of Low-Bit Diffusion Models", "abstract": "...", "introduction": "...", "related_work": "Model quantization. Quantization is a widely employed technique...", "citations": [191955, 118706, 517176, 264652, 1589, 2253, ... ], "overall_score": 90.6 } ``` `citations` is a list of `doc_id`s from `corpus.json`. `overall_score` is a GLM-4 quality rating (0–100).
## Sample Usage For integration into custom pipelines using the evaluation code from the GitHub repository: ```python from src.evaluation.single_paper_evaluator import SinglePaperEvaluator evaluator = SinglePaperEvaluator( gold_papers_path="data/gold100_papers.json", corpus_path="data/corpus.json", use_llm_judge=False, # set True to include LLM-as-Judge scores llm_model="deepseek-v3", # any OpenAI-compatible model name ) result = evaluator.evaluate( paper_id=..., # int generated_text=..., # str, text with [1], [2], ... citations citation_list=[...], # list of doc_id (int) or title (str); index i → [i+1] ) ``` ## Data Collection & Ethics - **Source**: Public arXiv metadata (2020–2025), respecting arXiv's [terms of use](https://arxiv.org/help/api/tou) - **Copyright**: Only metadata (titles, abstracts) and author-written content; no full-text. - **Ethical Use**: Intended for non-commercial research only