๐ Confidentiality Note: All sensitive information, including paper titles, paper content, and authorsโ names, has been masked.
An evidence-grounded Retrieval-Augmented Generation (RAG) workspace for Journal of Digital History (JDH) papers.
The system supports semantic chunking, vector indexing, retrieval, and LLM-based inference for paper-level review auditing.
This repository accompanies the preliminary arXiv paper:
Towards an Interactive Evidence-RAG Peer-Review Workspace for the Journal of Digital History
arXiv: 2606.25837
@article{guerard2026towards, title={Towards an Interactive Evidence-RAG Peer-Review Workspace for the Journal of Digital History}, author={Guerard, Elisabeth and Almasi, Mehrdad and Salaun, Marion and Clavert, Frederic and Pfeiffer, Mirjam}, journal={arXiv preprint arXiv:2606.25837}, year={2026} }
This project builds an Evidence-RAG system for JDH review auditing.
The main goal is to connect each reviewer comment to specific evidence from the submitted paper. This helps editors see whether a reviewerโs claim is:
The system does not replace the editorโs judgment. Instead, it provides a transparent evidence layer that helps editors evaluate reviewer comments more systematically, consistently, and explainably.
For this project, we use the Grid5000 infrastructure to run our models. You can find information about registration here. Grid5000 can only be used by academicians or people affiliated to university.
In this repository, you have two options:
Option 1: You can view and use the Jupyter notebooks available in the notebooks directory. To run notebooks 1 and 3, we recommend having a Grid5000 account. See the pre-requisites section above for more information.
Option 2: The same code is also available in the source directory, which allows you to run the models locally.
The complete workflow is organized into four main notebooks:
Each notebook performs one important step in the full pipeline.
The main models used or compared in this project are:
๐ค Qwen/Qwen2.5-32B-Instruct
Hugging Face: https://huggingface.co/Qwen/Qwen2.5-32B-Instruct
๐ค Qwen3.5-27B-Claude-4.6-Opus-Reasoning-Distilled-GGUF
Hugging Face: https://huggingface.co/Jackrong/Qwen3.5-27B-Claude-4.6-Opus-Reasoning-Distilled
๐งฌ BAAI/bge-large-en-v1.5 for text embeddings
Hugging Face: https://huggingface.co/BAAI/bge-large-en-v1.5
Notebook file:
0_JDH_Read_jupyterNotebook_Papers_Convert_to_Text (6) (1).ipynb
In this notebook, we collect the JDH article notebooks and convert them into readable text files.
This step extracts article content from the original notebook format, including:
The output of this step is a cleaned text version of each paper. These cleaned files are later used for chunking, embedding, retrieval, and evidence checking.
Notebook file:
1_JDH_Review_jupyterNotebook (oss_120b_ProcessReviewFiles) (5) (2).ipynb
In this notebook, we process the reviewer PDF files.
We use OpenAI GPT-OSS-120B on Grid5000 to read the review files and split them into structured reviewer comments.
The output contains separated reviewer comments with information such as:
This step is important because each reviewer comment must be checked separately against the paper evidence.
Notebook file:
2_JDH_VectorDatabase_jupyterNotebook (ProcesPapersFiles) (5) (2).ipynb
In this notebook, we prepare the searchable paper evidence database.
The paper texts are divided into meaningful semantic chunks using:
Each paper has its own Qdrant collection. Each chunk keeps useful metadata, including:
This step creates the evidence base that the Evidence-RAG system searches when evaluating reviewer comments.
Notebook file:
3_JDH_EvidenceRAG_jupyterNotebook _Qwen3.5-27B-Claude-4.6-Opus-Reasoning-Distilled-GGUF(Final Review Auditor Grid5000) (6) (1).ipynb
In this notebook, we run the final Evidence-RAG audit.
For each reviewer comment, the system retrieves the most relevant paper chunks from the Qdrant vector database. Then, the model evaluates whether the reviewer comment is supported by the retrieved evidence.
The final output includes:
This final audit file gives editors a structured view of how each reviewer comment relates to the actual paper content.
The final confidence score combines four components:
Confidence = 0.15 ร Retrieval Strength
+ 0.25 ร Model Support Strength
+ 0.45 ร Evidence Specificity
+ 0.15 ร Section Coverage
Retrieval Strength measures how strongly the vector database retrieved relevant chunks for the reviewer comment.
It is based on the similarity scores of the retrieved evidence chunks.
Model Support Strength measures how confidently the model judges that the reviewer comment is supported by the retrieved evidence.
This score reflects the modelโs assessment of the relationship between the reviewer comment and the retrieved chunks.
Evidence Specificity measures how directly the retrieved chunks address the reviewer comment.
This is important because a retrieved chunk may be generally related to the paper but not specific enough to support the exact reviewer claim.
Section Coverage measures how broadly the retrieved evidence covers different sections of the paper.
For example, if a paper has five sections and the retrieved evidence comes from two unique sections, then:
Section Coverage = 2 / 5 = 0.40
This score helps show whether the evidence is concentrated in one part of the paper or spread across multiple relevant sections.
The system does not make the final editorial decision.
Instead, it supports the editor by showing:
The editor remains the final human decision-maker.
The purpose of this workflow is to make the review-auditing process more:
More specifically, the system aims to:
By combining reviewer comments, paper evidence, vector retrieval, and model-based evaluation, the Evidence-RAG system helps editors better understand how strongly each reviewer comment is grounded in the submitted paper.
This project creates a complete Evidence-RAG pipeline for JDH review auditing:
JDH papers
โ
Text extraction
โ
Semantic chunking
โ
Vector database construction
โ
Reviewer comment extraction
โ
Evidence retrieval
โ
Model-based support judgment
โ
Editor-facing audit output
The final result is an editor-support system that links reviewer claims to paper evidence and explains how strongly each claim is supported.
3 commits
Jupyter Notebook
94.5%
Python
5.3%
๐ Confidentiality Note: All sensitive information, including paper titles, paper content, and authorsโ names, has been masked.
An evidence-grounded Retrieval-Augmented Generation (RAG) workspace for Journal of Digital History (JDH) papers.
The system supports semantic chunking, vector indexing, retrieval, and LLM-based inference for paper-level review auditing.
This repository accompanies the preliminary arXiv paper:
Towards an Interactive Evidence-RAG Peer-Review Workspace for the Journal of Digital History
arXiv: 2606.25837
@article{guerard2026towards, title={Towards an Interactive Evidence-RAG Peer-Review Workspace for the Journal of Digital History}, author={Guerard, Elisabeth and Almasi, Mehrdad and Salaun, Marion and Clavert, Frederic and Pfeiffer, Mirjam}, journal={arXiv preprint arXiv:2606.25837}, year={2026} }
This project builds an Evidence-RAG system for JDH review auditing.
The main goal is to connect each reviewer comment to specific evidence from the submitted paper. This helps editors see whether a reviewerโs claim is:
The system does not replace the editorโs judgment. Instead, it provides a transparent evidence layer that helps editors evaluate reviewer comments more systematically, consistently, and explainably.
For this project, we use the Grid5000 infrastructure to run our models. You can find information about registration here. Grid5000 can only be used by academicians or people affiliated to university.
In this repository, you have two options:
Option 1: You can view and use the Jupyter notebooks available in the notebooks directory. To run notebooks 1 and 3, we recommend having a Grid5000 account. See the pre-requisites section above for more information.
Option 2: The same code is also available in the source directory, which allows you to run the models locally.
The complete workflow is organized into four main notebooks:
Each notebook performs one important step in the full pipeline.
The main models used or compared in this project are:
๐ค Qwen/Qwen2.5-32B-Instruct
Hugging Face: https://huggingface.co/Qwen/Qwen2.5-32B-Instruct
๐ค Qwen3.5-27B-Claude-4.6-Opus-Reasoning-Distilled-GGUF
Hugging Face: https://huggingface.co/Jackrong/Qwen3.5-27B-Claude-4.6-Opus-Reasoning-Distilled
๐งฌ BAAI/bge-large-en-v1.5 for text embeddings
Hugging Face: https://huggingface.co/BAAI/bge-large-en-v1.5
Notebook file:
0_JDH_Read_jupyterNotebook_Papers_Convert_to_Text (6) (1).ipynb
In this notebook, we collect the JDH article notebooks and convert them into readable text files.
This step extracts article content from the original notebook format, including:
The output of this step is a cleaned text version of each paper. These cleaned files are later used for chunking, embedding, retrieval, and evidence checking.
Notebook file:
1_JDH_Review_jupyterNotebook (oss_120b_ProcessReviewFiles) (5) (2).ipynb
In this notebook, we process the reviewer PDF files.
We use OpenAI GPT-OSS-120B on Grid5000 to read the review files and split them into structured reviewer comments.
The output contains separated reviewer comments with information such as:
This step is important because each reviewer comment must be checked separately against the paper evidence.
Notebook file:
2_JDH_VectorDatabase_jupyterNotebook (ProcesPapersFiles) (5) (2).ipynb
In this notebook, we prepare the searchable paper evidence database.
The paper texts are divided into meaningful semantic chunks using:
Each paper has its own Qdrant collection. Each chunk keeps useful metadata, including:
This step creates the evidence base that the Evidence-RAG system searches when evaluating reviewer comments.
Notebook file:
3_JDH_EvidenceRAG_jupyterNotebook _Qwen3.5-27B-Claude-4.6-Opus-Reasoning-Distilled-GGUF(Final Review Auditor Grid5000) (6) (1).ipynb
In this notebook, we run the final Evidence-RAG audit.
For each reviewer comment, the system retrieves the most relevant paper chunks from the Qdrant vector database. Then, the model evaluates whether the reviewer comment is supported by the retrieved evidence.
The final output includes:
This final audit file gives editors a structured view of how each reviewer comment relates to the actual paper content.
The final confidence score combines four components:
Confidence = 0.15 ร Retrieval Strength
+ 0.25 ร Model Support Strength
+ 0.45 ร Evidence Specificity
+ 0.15 ร Section Coverage
Retrieval Strength measures how strongly the vector database retrieved relevant chunks for the reviewer comment.
It is based on the similarity scores of the retrieved evidence chunks.
Model Support Strength measures how confidently the model judges that the reviewer comment is supported by the retrieved evidence.
This score reflects the modelโs assessment of the relationship between the reviewer comment and the retrieved chunks.
Evidence Specificity measures how directly the retrieved chunks address the reviewer comment.
This is important because a retrieved chunk may be generally related to the paper but not specific enough to support the exact reviewer claim.
Section Coverage measures how broadly the retrieved evidence covers different sections of the paper.
For example, if a paper has five sections and the retrieved evidence comes from two unique sections, then:
Section Coverage = 2 / 5 = 0.40
This score helps show whether the evidence is concentrated in one part of the paper or spread across multiple relevant sections.
The system does not make the final editorial decision.
Instead, it supports the editor by showing:
The editor remains the final human decision-maker.
The purpose of this workflow is to make the review-auditing process more:
More specifically, the system aims to:
By combining reviewer comments, paper evidence, vector retrieval, and model-based evaluation, the Evidence-RAG system helps editors better understand how strongly each reviewer comment is grounded in the submitted paper.
This project creates a complete Evidence-RAG pipeline for JDH review auditing:
JDH papers
โ
Text extraction
โ
Semantic chunking
โ
Vector database construction
โ
Reviewer comment extraction
โ
Evidence retrieval
โ
Model-based support judgment
โ
Editor-facing audit output
The final result is an editor-support system that links reviewer claims to paper evidence and explains how strongly each claim is supported.
3 commits
Jupyter Notebook
94.5%
Python
5.3%