Hermes Agent commited on
Commit
0af8bff
·
1 Parent(s): 7032925

Add explicit configs block + fix manifest path ref in README so HF viewer auto-detects splits

Browse files
Files changed (1) hide show
  1. README.md +16 -1
README.md CHANGED
@@ -28,6 +28,21 @@ task_categories:
28
  - question-answering
29
  pretty_name: SecureCodePairs
30
  version: 1.2.0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
31
  ---
32
 
33
  ## Dataset Summary
@@ -239,7 +254,7 @@ python3 scripts/statistics.py
239
 
240
  All examples are hand-authored (no template-renamed duplicates). Source records live in `scripts/data.py` and
241
  `scripts/data_ext*.py`; trajectories in `scripts/trajectories.py`. The build uses a fixed seed (`42`) for deterministic
242
- train/validation/test splits. See `dataset/manifest.json`.
243
 
244
  ---
245
 
 
28
  - question-answering
29
  pretty_name: SecureCodePairs
30
  version: 1.2.0
31
+ configs:
32
+ - config_name: default
33
+ data_files:
34
+ - split: train
35
+ path: data/train.jsonl
36
+ - split: validation
37
+ path: data/validation.jsonl
38
+ - split: test
39
+ path: data/test.jsonl
40
+ - split: benchmark
41
+ path: data/benchmark.jsonl
42
+ - config_name: trajectories
43
+ data_files:
44
+ - split: train
45
+ path: trajectories/trajectories.jsonl
46
  ---
47
 
48
  ## Dataset Summary
 
254
 
255
  All examples are hand-authored (no template-renamed duplicates). Source records live in `scripts/data.py` and
256
  `scripts/data_ext*.py`; trajectories in `scripts/trajectories.py`. The build uses a fixed seed (`42`) for deterministic
257
+ train/validation/test splits. See `manifest.json`.
258
 
259
  ---
260