Datasets:
ArXiv:
License:
Rename dataset card to AutoResearchBench
Browse files
README.md
CHANGED
|
@@ -2,18 +2,19 @@
|
|
| 2 |
license: apache-2.0
|
| 3 |
---
|
| 4 |
|
| 5 |
-
#
|
| 6 |
|
| 7 |
-
This repository hosts the obfuscated benchmark bundle for `
|
|
|
|
|
|
|
|
|
|
|
|
|
| 8 |
|
| 9 |
## Download
|
| 10 |
|
| 11 |
```bash
|
| 12 |
export HF_TOKEN=your_hf_token # required if this dataset repo is private
|
| 13 |
-
curl -L
|
| 14 |
-
-H "Authorization: Bearer ${HF_TOKEN}" \
|
| 15 |
-
-o Academic-DeepWide-Search.jsonl.obf.json \
|
| 16 |
-
https://huggingface.co/datasets/Lk123/Academic-DeepWide-Search/resolve/main/Academic-DeepWide-Search.jsonl.obf.json
|
| 17 |
```
|
| 18 |
|
| 19 |
## Decrypt
|
|
@@ -21,9 +22,7 @@ curl -L \
|
|
| 21 |
Use `decrypt_benchmark.py` from the benchmark code repository:
|
| 22 |
|
| 23 |
```bash
|
| 24 |
-
python3 decrypt_benchmark.py
|
| 25 |
-
--input-file Academic-DeepWide-Search.jsonl.obf.json \
|
| 26 |
-
--output-file Academic-DeepWide-Search.jsonl
|
| 27 |
```
|
| 28 |
|
| 29 |
-
Run inference and evaluation on the decrypted `
|
|
|
|
| 2 |
license: apache-2.0
|
| 3 |
---
|
| 4 |
|
| 5 |
+
# AutoResearchBench
|
| 6 |
|
| 7 |
+
This repository hosts the obfuscated benchmark bundle for `AutoResearchBench`.
|
| 8 |
+
|
| 9 |
+
The published file uses public reversible obfuscation for benchmark release. It lowers casual web exposure, but it is not strong access control.
|
| 10 |
+
|
| 11 |
+
Please do not repost decrypted questions or answers in plain text or images online.
|
| 12 |
|
| 13 |
## Download
|
| 14 |
|
| 15 |
```bash
|
| 16 |
export HF_TOKEN=your_hf_token # required if this dataset repo is private
|
| 17 |
+
curl -L -H "Authorization: Bearer ${HF_TOKEN}" -o AutoResearchBench.jsonl.obf.json https://huggingface.co/datasets/Lk123/AutoResearchBench/resolve/main/AutoResearchBench.jsonl.obf.json
|
|
|
|
|
|
|
|
|
|
| 18 |
```
|
| 19 |
|
| 20 |
## Decrypt
|
|
|
|
| 22 |
Use `decrypt_benchmark.py` from the benchmark code repository:
|
| 23 |
|
| 24 |
```bash
|
| 25 |
+
python3 decrypt_benchmark.py --input-file AutoResearchBench.jsonl.obf.json --output-file AutoResearchBench.jsonl
|
|
|
|
|
|
|
| 26 |
```
|
| 27 |
|
| 28 |
+
Run inference and evaluation on the decrypted `AutoResearchBench.jsonl`, not on the `.obf.json` bundle directly.
|