Zaynes commited on
Commit
c1f815a
·
verified ·
1 Parent(s): 7fe2f56

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +19 -85
README.md CHANGED
@@ -1,117 +1,51 @@
1
  ---
2
  license: mit
3
  tags:
4
- - degen_test_1_countdown
5
- - budget-32k
6
  - dfs_baseline
7
- - dfs_baseline
8
- configs:
9
- - config_name: default
10
- data_files:
11
- - split: train
12
- path: data/train-*
13
- dataset_info:
14
- features:
15
- - name: question
16
- dtype: string
17
- - name: metadata
18
- struct:
19
- - name: expression
20
- dtype: string
21
- - name: numbers
22
- list: int64
23
- - name: operators_used
24
- list: string
25
- - name: target
26
- dtype: int64
27
- - name: task_source
28
- dtype: string
29
- - name: responses_by_sample
30
- list:
31
- list: string
32
- - name: tokens_by_sample
33
- list: int64
34
- - name: num_rounds_by_sample
35
- list: int64
36
- - name: strategy_type
37
- dtype: string
38
- - name: model
39
- dtype: string
40
- splits:
41
- - name: train
42
- num_bytes: 6598221
43
- num_examples: 100
44
- download_size: 347108
45
- dataset_size: 6598221
46
  ---
47
 
48
  # countdown-dfs-baseline-32k
49
 
50
- Countdown reasoning with dfs_baseline strategy to 32768 tokens
51
 
52
  ## Dataset Info
53
 
54
  - **Rows**: 100
55
- - **Columns**: 17
56
 
57
  ## Columns
58
 
59
  | Column | Type | Description |
60
  |--------|------|-------------|
61
- | question | Value('string') | The countdown problem statement |
62
- | metadata | Value('string') | JSON with target number, available numbers, and solution |
63
- | task_source | Value('string') | Task type identifier (countdown) |
64
- | formatted_prompt | List({'content': Value('string'), 'role': Value('string')}) | Initial prompt messages sent to the model |
65
- | responses_by_sample | List(List(Value('string'))) | Full model response [sample_idx][round_idx] = response string |
66
- | tokens_by_sample | List(Value('int64')) | Total token count for each sample (based on continuation_text) |
67
- | num_rounds_by_sample | List(Value('int64')) | Number of continuation rounds for each sample |
68
- | continuation_prompts_by_sample | List(List(Value('null'))) | Continuation prompts used [sample_idx][round_idx] = prompt string |
69
- | continuation_text_by_sample | List(List(Value('null'))) | Truncated text used for continuation [sample_idx][round_idx]. For budget_forcing: truncated at first </think> tag. For other strategies: same as responses_by_sample. |
70
- | strategy_type | Value('string') | Prompting strategy: 'iterative', 'budget_forcing', or 'random_noise' |
71
- | termination_reason_by_sample | List(Value('string')) | Why each sample terminated: 'max_rounds_reached', 'budget_reached', or 'answer_correct' |
72
- | correct_round_by_sample | List(Value('int64')) | Round number where correct answer was first found (None if never correct) |
73
- | smart_termination_enabled | Value('bool') | Whether smart termination was enabled for this run |
74
- | retry_count_by_sample | List(Value('int64')) | Total retry attempts per sample due to empty or too-short responses (0 if no retries needed) |
75
- | answers_by_sample | List(List(List(Value('string')))) | Extracted answer spans [sample][round][answer_idx] |
76
- | evals_by_sample | List(List(List(Value('bool')))) | Correctness evaluations [sample][round][answer_idx] |
77
- | eval_metadata_by_sample | List(List(List({'answer_block': Value('string'), 'error': Value('string'), 'final_answer': Value('float64'), 'is_correct': Value('bool')}))) | Evaluation details [sample][round][answer_idx] |
78
 
79
 
80
  ## Generation Parameters
81
 
82
  ```json
83
  {
84
- "script_name": "stage_01_generate_reasoning.py",
85
  "model": "dfs_baseline",
 
86
  "hyperparameters": {
87
- "temperature": 0.7,
88
- "max_tokens_per_round": 32768,
89
- "target_total_tokens": 32768,
90
- "samples": 1,
91
- "strategy": "dfs_baseline",
92
- "max_rounds": null,
93
- "min_tokens": null,
94
- "max_retries_per_round": -1
95
  },
96
- "input_datasets": [],
97
- "description": "Countdown reasoning with dfs_baseline strategy to 32768 tokens",
98
- "experiment": "degen_test_1_countdown",
99
- "strategy": "dfs_baseline",
100
- "arg_count": 4,
101
- "seed": 42,
102
- "smart_termination": false,
103
- "max_rounds": null,
104
- "min_tokens": null,
105
- "inference_backend": "curator",
106
- "status": "completed",
107
- "completed_at": "2026-01-03T20:33:58.477853"
108
  }
109
  ```
110
 
111
- ## Experiment Documentation
112
-
113
- For complete experiment details, see [https://github.com/TAUR-Lab/Reasoning-Horizons/tree/main/experiments/degen_test_1_countdown](https://github.com/TAUR-Lab/Reasoning-Horizons/tree/main/experiments/degen_test_1_countdown)
114
-
115
  ## Usage
116
 
117
  ```python
 
1
  ---
2
  license: mit
3
  tags:
 
 
4
  - dfs_baseline
5
+ - countdown
6
+ - baseline
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7
  ---
8
 
9
  # countdown-dfs-baseline-32k
10
 
11
+ DFS baseline: systematic enumeration of operator combinations
12
 
13
  ## Dataset Info
14
 
15
  - **Rows**: 100
16
+ - **Columns**: 8
17
 
18
  ## Columns
19
 
20
  | Column | Type | Description |
21
  |--------|------|-------------|
22
+ | question | Value('string') | *No description provided* |
23
+ | metadata | {'expression': Value('string'), 'numbers': List(Value('int64')), 'operators_used': List(Value('string')), 'target': Value('int64')} | *No description provided* |
24
+ | task_source | Value('string') | *No description provided* |
25
+ | responses_by_sample | List(List(Value('string'))) | *No description provided* |
26
+ | tokens_by_sample | List(Value('int64')) | *No description provided* |
27
+ | num_rounds_by_sample | List(Value('int64')) | *No description provided* |
28
+ | strategy_type | Value('string') | *No description provided* |
29
+ | model | Value('string') | *No description provided* |
 
 
 
 
 
 
 
 
 
30
 
31
 
32
  ## Generation Parameters
33
 
34
  ```json
35
  {
36
+ "script_name": "stage_01_dfs_baseline.py",
37
  "model": "dfs_baseline",
38
+ "description": "DFS baseline: systematic enumeration of operator combinations",
39
  "hyperparameters": {
40
+ "token_budget": 32000,
41
+ "num_examples": 100,
42
+ "arg_count": 4,
43
+ "samples": 1
 
 
 
 
44
  },
45
+ "input_datasets": []
 
 
 
 
 
 
 
 
 
 
 
46
  }
47
  ```
48
 
 
 
 
 
49
  ## Usage
50
 
51
  ```python