Codex commited on
Commit
4396297
·
1 Parent(s): e675c53

Add Academic-DeepWide-Search obfuscated bundle

Browse files
Academic-DeepWide-Search.jsonl.obf.json ADDED
The diff for this file is too large to render. See raw diff
 
README.md CHANGED
@@ -1,3 +1,29 @@
1
- ---
2
- license: apache-2.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ ---
4
+
5
+ # Academic-DeepWide-Search
6
+
7
+ This repository hosts the obfuscated benchmark bundle for `Academic-DeepWide-Search`.
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
20
+
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 `Academic-DeepWide-Search.jsonl`, not on the `.obf.json` bundle directly.