File size: 1,726 Bytes
4396297
 
 
 
fe446cf
4396297
fe446cf
 
 
 
 
4396297
 
 
 
 
fe446cf
4396297
 
 
 
 
 
 
fe446cf
4396297
 
fe446cf
74f4fab
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
---
license: apache-2.0
---

# AutoResearchBench

This repository hosts the obfuscated benchmark bundle for `AutoResearchBench`.

The published file uses public reversible obfuscation for benchmark release. It lowers casual web exposure, but it is not strong access control.

Please do not repost decrypted questions or answers in plain text or images online.

## Download

```bash
export HF_TOKEN=your_hf_token  # required if this dataset repo is private
curl -L   -H "Authorization: Bearer ${HF_TOKEN}"   -o AutoResearchBench.jsonl.obf.json   https://huggingface.co/datasets/Lk123/AutoResearchBench/resolve/main/AutoResearchBench.jsonl.obf.json
```

## Decrypt

Use `decrypt_benchmark.py` from the benchmark code repository:

```bash
python3 decrypt_benchmark.py   --input-file AutoResearchBench.jsonl.obf.json   --output-file AutoResearchBench.jsonl
```

Run inference and evaluation on the decrypted `AutoResearchBench.jsonl`, not on the `.obf.json` bundle directly.


## ❤️ Citing Us
If you find this repository or our work useful, please consider giving a star ⭐ and or citing our work, which would be greatly appreciated:
```bibtex
@misc{xiong2026autoresearchbenchbenchmarkingaiagents,
      title={AutoResearchBench: Benchmarking AI Agents on Complex Scientific Literature Discovery}, 
      author={Lei Xiong and Kun Luo and Ziyi Xia and Wenbo Zhang and Jin-Ge Yao and Zheng Liu and Jingying Shao and Jianlyu Chen and Hongjin Qian and Xi Yang and Qian Yu and Hao Li and Chen Yue and Xiaan Du and Yuyang Wang and Yesheng Liu and Haiyu Xu and Zhicheng Dou},
      year={2026},
      eprint={2604.25256},
      archivePrefix={arXiv},
      primaryClass={cs.AI},
      url={https://arxiv.org/abs/2604.25256}, 
}
```