zsprague commited on
Commit
47b7ef9
·
verified ·
1 Parent(s): 7b9bea9

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +54 -41
README.md CHANGED
@@ -1,43 +1,56 @@
1
  ---
2
- dataset_info:
3
- features:
4
- - name: data_source
5
- dtype: large_string
6
- - name: prompt
7
- list:
8
- - name: content
9
- dtype: string
10
- - name: role
11
- dtype: string
12
- - name: ability
13
- dtype: large_string
14
- - name: reward_model
15
- struct:
16
- - name: ground_truth
17
- dtype: string
18
- - name: style
19
- dtype: string
20
- - name: extra_info
21
- struct:
22
- - name: difficulty
23
- dtype: int64
24
- - name: index
25
- dtype: int64
26
- - name: numbers
27
- list: int64
28
- - name: split
29
- dtype: string
30
- - name: target
31
- dtype: int64
32
- splits:
33
- - name: train
34
- num_bytes: 2632641
35
- num_examples: 5000
36
- download_size: 178758
37
- dataset_size: 2632641
38
- configs:
39
- - config_name: default
40
- data_files:
41
- - split: train
42
- path: data/train-*
43
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ license: mit
3
+ tags:
4
+ - multiplex-thinking
5
+ - countdown
6
+ - input-data
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7
  ---
8
+
9
+ # multiplex-countdown-train-data-v1
10
+
11
+ Countdown d4-d5 training data for multiplex-thinking-countdown experiment. 5000 problems with 5 numbers, targets 100-500, minimum 2 operations required.
12
+
13
+ ## Dataset Info
14
+
15
+ - **Rows**: 5000
16
+ - **Columns**: 5
17
+
18
+ ## Columns
19
+
20
+ | Column | Type | Description |
21
+ |--------|------|-------------|
22
+ | data_source | Value('large_string') | Task source identifier (countdown) |
23
+ | prompt | List({'content': Value('string'), 'role': Value('string')}) | Chat-formatted prompt with system + user messages |
24
+ | ability | Value('large_string') | Task ability type |
25
+ | reward_model | {'ground_truth': Value('string'), 'style': Value('string')} | Ground truth info for reward calculation |
26
+ | extra_info | {'difficulty': Value('int64'), 'index': Value('int64'), 'numbers': List(Value('int64')), 'split': Value('string'), 'target': Value('int64')} | Additional metadata (target number, available numbers) |
27
+
28
+
29
+ ## Generation Parameters
30
+
31
+ ```json
32
+ {
33
+ "script_name": "generate_countdown_data.py",
34
+ "description": "Countdown d4-d5 training data for multiplex-thinking-countdown experiment. 5000 problems with 5 numbers, targets 100-500, minimum 2 operations required.",
35
+ "model": "deepseek-ai/DeepSeek-R1-Distill-Qwen-7B",
36
+ "hyperparameters": {},
37
+ "input_datasets": []
38
+ }
39
+ ```
40
+
41
+ ## Experiment Documentation
42
+
43
+ For complete experiment details, see [https://github.com/Zayne-sprague/SC-Research-Notes/tree/main/experiments/multiplex-thinking-countdown](https://github.com/Zayne-sprague/SC-Research-Notes/tree/main/experiments/multiplex-thinking-countdown)
44
+
45
+ ## Usage
46
+
47
+ ```python
48
+ from datasets import load_dataset
49
+
50
+ dataset = load_dataset("reasoning-degeneration-dev/multiplex-countdown-train-data-v1", split="train")
51
+ print(f"Loaded {len(dataset)} rows")
52
+ ```
53
+
54
+ ---
55
+
56
+ *This dataset is tracked in [reasoning-degeneration-dev/PROJECT-MANIFEST](https://huggingface.co/datasets/reasoning-degeneration-dev/PROJECT-MANIFEST)*