Spaces:
Sleeping
Sleeping
File size: 8,910 Bytes
ec4ae03 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 | #!/usr/bin/env python3
"""
Download Chinar/AQuA-RAT from HuggingFace and convert it to the same JSONL
format used by gsm8k_sft.jsonl so the GRPO training script can consume it
directly via --gsm8k-data.
Chinar/AQuA-RAT schema (processed version)
-------------------------------------------
prompt : str β the math question
completion : str β step-by-step reasoning ending with:
"The answer is X . Therefore, the correct answer is: <value>"
Output schema (messages format expected by load_gsm8k)
-------------------------------------------------------
{
"id": "aqua_<idx>",
"skill_id": "aqua_rat_algebra",
"source": "Chinar/AQuA-RAT",
"split": "train" | "validation",
"messages": [
{"role": "system", "content": SOLVER_SYSTEM_PROMPT},
{"role": "user", "content": "Solve ... Problem:\\n<question>"},
{"role": "assistant", "content": "Step 1: ...\\nFinal Answer: <value>"}
]
}
The dataset has only a 'train' split β we reserve the last 500 rows as
a validation set and use the rest for training.
Usage
-----
python scripts/prepare_aqua_dataset.py
python scripts/prepare_aqua_dataset.py --val-size 300 --dry-run
"""
from __future__ import annotations
import argparse
import json
import re
import sys
from pathlib import Path
from typing import Any, Optional
# ---------------------------------------------------------------------------
# Prompt constants (kept in sync with src/config/prompts.py)
# ---------------------------------------------------------------------------
SOLVER_SYSTEM_PROMPT = (
"You are a step-by-step math solver. "
"Solve the given problem one step at a time. "
"Each step must be on its own line, starting with 'Step N:'. "
"End with a line starting with 'Final Answer:'. "
"Write every mathematical expression in Python/SymPy syntax "
"so it can be verified programmatically."
)
USER_WRAPPER = (
"Solve the following problem. Show your reasoning as numbered steps, "
"then give the final numeric answer on the last line.\n\nProblem:\n{question}"
)
# ---------------------------------------------------------------------------
# Answer extraction
# ---------------------------------------------------------------------------
# The completion always ends with a variant of:
# "The answer is E . Therefore, the correct answer is: 23"
_ANSWER_TAIL = re.compile(
r"(?:The answer is\s+[A-Ea-e]\s*[.\-]?\s*)?"
r"Therefore,?\s+the correct answer is\s*:?\s*(.+)$",
re.IGNORECASE,
)
def _extract_answer_and_rationale(completion: str) -> Optional[tuple[str, str]]:
"""
Split the completion into (rationale_lines, final_answer_str).
Returns None if no extractable numeric answer is found.
"""
# Find the tail marker
m = _ANSWER_TAIL.search(completion)
if not m:
return None
raw_answer = m.group(1).strip()
# Everything before the tail is the rationale
rationale = completion[: m.start()].strip()
# Also strip a standalone "The answer is X ." line at the end of rationale
rationale = re.sub(r"\s*The answer is\s+[A-Ea-e]\s*[.\-]?\s*$", "", rationale, flags=re.IGNORECASE).strip()
# Normalise the answer to a clean numeric string
final_answer = _normalise_answer(raw_answer)
if final_answer is None:
return None
return rationale, final_answer
def _normalise_answer(raw: str) -> Optional[str]:
"""
Extract a single numeric value from an answer string.
"23" β "23"
"$ 1600" β "1600"
"8 seconds" β "8"
"5 and 1" β None (multi-value β skip)
"I and II" β None (non-numeric β skip)
"β 3 β€ x β€ 4" β None (inequality β skip)
"""
text = raw.strip()
# Remove currency / whitespace
text = text.replace("$", "").replace("Rs.", "").replace("Rs", "").replace(",", "").strip()
# Handle unicode minus
text = text.replace("\u2212", "-").replace("β", "-")
# Skip if "and" still present (multi-value like "5 and 1")
if re.search(r"\band\b", text, re.IGNORECASE):
return None
# Skip inequalities / expressions with variables
if re.search(r"[a-zA-Zβ€β₯<>]", text):
return None
# Single number (integer or decimal, optionally negative)
m = re.fullmatch(r"\s*(-?\d+(?:\.\d+)?)\s*(?:[a-zA-Z%Β°].*)?", text)
if m:
val_str = m.group(1)
try:
val = float(val_str)
return str(int(val)) if val == int(val) else val_str
except ValueError:
pass
return None
# ---------------------------------------------------------------------------
# Rationale β Step N: format
# ---------------------------------------------------------------------------
def _rationale_to_steps(rationale: str) -> list[str]:
lines: list[str] = []
for raw in rationale.splitlines():
line = raw.strip()
if line:
line = line.replace("^", "**")
lines.append(line)
if not lines and rationale.strip():
sentences = re.split(r"(?<=[.!?])\s+", rationale.strip())
lines = [s.strip() for s in sentences if s.strip()]
return lines
def _build_assistant(rationale: str, final_answer: str) -> str:
steps = _rationale_to_steps(rationale)
parts = [f"Step {i}: {line}" for i, line in enumerate(steps, 1)]
body = "\n".join(parts)
return f"{body}\nFinal Answer: {final_answer}" if body else f"Final Answer: {final_answer}"
# ---------------------------------------------------------------------------
# Row conversion
# ---------------------------------------------------------------------------
def convert_row(row: dict[str, Any], idx: int, split: str) -> Optional[dict[str, Any]]:
question = (row.get("prompt") or "").strip()
completion = (row.get("completion") or "").strip()
if not question or not completion:
return None
result = _extract_answer_and_rationale(completion)
if result is None:
return None
rationale, final_answer = result
assistant_text = _build_assistant(rationale, final_answer)
return {
"id": f"aqua_{split}_{idx}",
"skill_id": "aqua_rat_algebra",
"source": "Chinar/AQuA-RAT",
"split": split,
"messages": [
{"role": "system", "content": SOLVER_SYSTEM_PROMPT},
{"role": "user", "content": USER_WRAPPER.format(question=question)},
{"role": "assistant", "content": assistant_text},
],
}
# ---------------------------------------------------------------------------
# Main
# ---------------------------------------------------------------------------
def main() -> None:
parser = argparse.ArgumentParser()
parser.add_argument("--output-dir", default="data/sft")
parser.add_argument("--val-size", type=int, default=500,
help="How many rows from the end of the dataset to use as validation.")
parser.add_argument("--dry-run", action="store_true")
parser.add_argument("--max-samples", type=int, default=None)
args = parser.parse_args()
try:
from datasets import load_dataset
except ImportError:
print("ERROR: pip install datasets", file=sys.stderr)
sys.exit(1)
print("Downloading Chinar/AQuA-RAT β¦")
ds = load_dataset("Chinar/AQuA-RAT")
all_rows = list(ds["train"])
total = len(all_rows)
print(f" Total rows: {total:,}")
val_rows = all_rows[-args.val_size:]
train_rows = all_rows[: -args.val_size]
splits = {
"train": train_rows,
"validation": val_rows,
}
out_dir = Path(args.output_dir)
out_dir.mkdir(parents=True, exist_ok=True)
for split, rows in splits.items():
if args.max_samples:
rows = rows[: args.max_samples]
records: list[dict] = []
skipped = 0
for idx, row in enumerate(rows):
rec = convert_row(row, idx, split)
if rec is None:
skipped += 1
else:
records.append(rec)
skip_pct = 100.0 * skipped / max(1, len(rows))
if args.dry_run:
print(f"\nββ {split}: {len(records)} valid / {skipped} skipped ({skip_pct:.1f}%) ββ")
for rec in records[:3]:
print(json.dumps(rec, indent=2))
continue
out_path = out_dir / f"aqua_{split}.jsonl"
with out_path.open("w", encoding="utf-8") as f:
for rec in records:
f.write(json.dumps(rec, ensure_ascii=False) + "\n")
print(f" [{split:12s}] {len(records):6,d} valid {skipped:5,d} skipped ({skip_pct:.1f}%) β {out_path}")
if not args.dry_run:
print("\nDone. Launch continuation training with:")
print(" bash launch_grpo_aqua.sh")
if __name__ == "__main__":
main()
|