| """ |
| Build pairwise SFT data matching evaluate_end2end.py format. |
| |
| Prompt template (from data_processing/planner.py::SelectionAgentWithSchema): |
| <|start_header_id|>user<|end_header_id|> |
| Given the question and following SQL queries, and execution results, please |
| select the best SQL query that can answer the question. Answer the index of |
| the SQL query you choose. |
| {schema} |
| |
| Question: {question} |
| Hint: {evidence} |
| |
| 1. {sql_1} |
| Execution result: {result_1} |
| ------------------------- |
| 2. {sql_2} |
| Execution result: {result_2} |
| ------------------------- |
| <|eot_id|> |
| <|start_header_id|>assistant<|end_header_id|> |
| |
| Completion: <answer>{idx}</answer> where idx ∈ {1, 2, -1}. |
| Note: 1-indexed (1 = first candidate, 2 = second, -1 = neither). |
| |
| Two source modes: |
| --source bird_train: from K=30 Qwen-72B candidates on BIRD-train (with exec results + is_correct labels). |
| Inject gold SQL as a YES candidate if not already present. |
| --source synsql: from synsql_candidates_30k.jsonl (1 gold YES + 7 synthetic wrong NO per Q). |
| |
| Per Q: emit up to N (YES, NO) pairs + up to M (NO, NO) pairs, with 1-based indexing. |
| Each raw pair → 2 records (swap A↔B) for label balance. |
| |
| User instruction: "do not split bird train into train and dev set" — write all rows |
| to a single `train` split (no test). |
| """ |
| import argparse |
| import json |
| import os |
| import re |
| import sys |
| import random |
| from concurrent.futures import ThreadPoolExecutor, as_completed |
|
|
| os.environ.setdefault("PYTHONNOUSERSITE", "1") |
| os.environ.setdefault("DB_EXEC_API_DISABLE", "1") |
| ROOT = "/weka/s225250685/mats-tist" |
| os.chdir(ROOT) |
| sys.path.insert(0, ROOT) |
|
|
| from datasets import Dataset, DatasetDict |
| from scripts.rich_schema import render_rich_schema |
| from validator_data.validator import _execute_sql |
|
|
|
|
| |
| |
| |
| PROMPT_HEADER = ( |
| "<|start_header_id|>user<|end_header_id|>\n" |
| "Given the question and following SQL queries, and execution results, please " |
| "select the best SQL query that can answer the question. Answer the index of " |
| "the SQL query you choose.\n" |
| "{schema}\n\n" |
| "Question: {question}\n" |
| "Hint: {evidence}\n" |
| ) |
|
|
| CHOICE_BLOCK = ( |
| "\n{index}. {sql}\n" |
| "Execution result: {result}\n" |
| "-------------------------\n" |
| ) |
|
|
| PROMPT_FOOTER = "<|eot_id|>\n<|start_header_id|>assistant<|end_header_id|>\n" |
|
|
| MAX_SCHEMA_CHARS = 3500 |
| MAX_SQL_CHARS = 600 |
| MAX_EXEC_CHARS = 220 |
|
|
|
|
| def safe_truncate(s, n): |
| s = str(s) if s is not None else "" |
| return s if len(s) <= n else s[:n] + "..." |
|
|
|
|
| def tokens(sql): |
| return set(re.findall(r"[a-zA-Z_][a-zA-Z0-9_]+|[<>=!]+", (sql or "").lower())) |
|
|
|
|
| def jaccard(a, b): |
| if not a or not b: return 0.0 |
| return len(a & b) / max(len(a | b), 1) |
|
|
|
|
| def gold_exec_str(db_path, sql, timeout=10): |
| if not sql or not sql.strip(): return "Error: empty SQL" |
| try: |
| r, err = _execute_sql("./" + db_path if not db_path.startswith("./") else db_path, sql, timeout=timeout) |
| except Exception as e: |
| return f"Error: {str(e)[:160]}" |
| if err: return f"Error: {str(r)[:160]}" |
| rows = str(r)[:260] |
| return f"OK. Rows preview: {rows}" if rows.strip() and rows.strip() != "[]" else "OK. (no rows returned)" |
|
|
|
|
| def build_prompt(schema_text, question, evidence, sql_1, exec_1, sql_2, exec_2): |
| p = PROMPT_HEADER.format(schema=schema_text, question=question, evidence=evidence or "") |
| p += CHOICE_BLOCK.format(index=1, sql=safe_truncate(sql_1, MAX_SQL_CHARS).strip(), |
| result=safe_truncate(exec_1, MAX_EXEC_CHARS)) |
| p += CHOICE_BLOCK.format(index=2, sql=safe_truncate(sql_2, MAX_SQL_CHARS).strip(), |
| result=safe_truncate(exec_2, MAX_EXEC_CHARS)) |
| p += PROMPT_FOOTER |
| return p |
|
|
|
|
| def emit_records(records, schema_text, question, evidence, db_id, cand_a, cand_b, label_idx_1based, kind): |
| """Emit 2 records for the swap. label_idx_1based ∈ {1, 2, -1}.""" |
| out = [] |
| |
| prompt_ab = build_prompt(schema_text, question, evidence, cand_a["sql"], cand_a["exec"], cand_b["sql"], cand_b["exec"]) |
| completion_ab = f"<answer>{label_idx_1based}</answer>" |
| |
| label_ba = -1 if label_idx_1based == -1 else (3 - label_idx_1based) |
| prompt_ba = build_prompt(schema_text, question, evidence, cand_b["sql"], cand_b["exec"], cand_a["sql"], cand_a["exec"]) |
| completion_ba = f"<answer>{label_ba}</answer>" |
| for prompt, completion in [(prompt_ab, completion_ab), (prompt_ba, completion_ba)]: |
| records.append({ |
| "prompt": prompt, |
| "completion": completion, |
| "messages": [ |
| {"role": "user", "content": prompt}, |
| {"role": "assistant", "content": completion}, |
| ], |
| "question": question, |
| "db_id": db_id, |
| "label_idx": int(completion[completion.find('>')+1:completion.find('</')]), |
| "kind": kind, |
| }) |
|
|
|
|
| def render_schema_cached(samples_iter, split="train"): |
| cache = {} |
| for s in samples_iter: |
| k = s["db_id"] |
| if k not in cache: |
| cache[k] = safe_truncate(render_rich_schema(s, split=split), MAX_SCHEMA_CHARS) |
| return cache |
|
|
|
|
| def process_bird(args, rng, schema_cache): |
| """Process BIRD-train K=30 candidates file. Inject gold YES if not already present.""" |
| records = [] |
| n_q = 0 |
| n_emitted = 0 |
| n_gold_added = 0 |
| by_db_count = {} |
|
|
| |
| rows = [] |
| with open(args.input) as f: |
| for line in f: |
| line = line.strip() |
| if not line: continue |
| r = json.loads(line) |
| rows.append(r) |
| if r["db_id"] not in schema_cache: |
| schema_cache[r["db_id"]] = safe_truncate(render_rich_schema(r, split="train"), MAX_SCHEMA_CHARS) |
| print(f"BIRD-train read {len(rows)} Qs", flush=True) |
|
|
| |
| def needs_gold_exec(r): |
| seen = set() |
| for c in r.get("candidates", []): |
| norm = re.sub(r"\s+", " ", (c.get("sql") or "").strip().lower()) |
| seen.add(norm) |
| gold_norm = re.sub(r"\s+", " ", (r.get("sql") or "").strip().lower()) |
| return (gold_norm not in seen) and bool(gold_norm) |
|
|
| gold_exec_cache = {} |
| to_exec = [r for r in rows if needs_gold_exec(r)] |
| print(f" Need gold exec for {len(to_exec)} Qs (gold not in candidates)", flush=True) |
| def _gxs(r): |
| return id(r), gold_exec_str(r["db_path"], r["sql"], timeout=15) |
| with ThreadPoolExecutor(max_workers=32) as exe: |
| for id_, gxs in exe.map(_gxs, to_exec): |
| gold_exec_cache[id_] = gxs |
|
|
| for r in rows: |
| n_q += 1 |
| schema_text = schema_cache[r["db_id"]] |
| |
| seen = set() |
| uniq = [] |
| for c in r.get("candidates", []): |
| norm = re.sub(r"\s+", " ", (c.get("sql") or "").strip().lower()) |
| if not norm or norm in seen: continue |
| seen.add(norm) |
| uniq.append({"sql": c["sql"], "exec": c["exec_str"], "is_correct": bool(c.get("is_correct")), |
| "norm": norm}) |
| |
| gold_sql = (r.get("sql") or "").strip() |
| if gold_sql: |
| gold_norm = re.sub(r"\s+", " ", gold_sql.lower()) |
| if gold_norm not in seen: |
| ge = gold_exec_cache.get(id(r)) |
| if ge and not ge.startswith("Error"): |
| uniq.append({"sql": gold_sql, "exec": ge, "is_correct": True, "norm": gold_norm, "_gold": True}) |
| seen.add(gold_norm) |
| n_gold_added += 1 |
|
|
| yes = [c for c in uniq if c["is_correct"]] |
| no = [c for c in uniq if not c["is_correct"]] |
| if not (yes and no) and len(no) < 2: |
| continue |
|
|
| |
| yn_pairs = [] |
| if yes and no: |
| yes_toks = [tokens(y["sql"]) for y in yes] |
| scored = [] |
| for ni, nc in enumerate(no): |
| t = tokens(nc["sql"]) |
| best = max((jaccard(t, ty) for ty in yes_toks), default=0.0) |
| scored.append((best, ni)) |
| scored.sort(reverse=True) |
| ranked_no = [no[i] for _, i in scored] |
| for ys in yes: |
| for nc in ranked_no[: args.max_yn]: |
| yn_pairs.append((ys, nc)) |
| if len(yn_pairs) >= args.max_yn: break |
| if len(yn_pairs) >= args.max_yn: break |
|
|
| nn_pairs = [] |
| if len(no) >= 2 and args.max_nn > 0: |
| rng.shuffle(no) |
| nn_pairs.append((no[0], no[1])) |
|
|
| for ys, nc in yn_pairs: |
| emit_records(records, schema_text, r["question"], r.get("evidence", "") or "", r["db_id"], ys, nc, |
| label_idx_1based=1, kind="yn") |
| n_emitted += 2 |
| for na, nb in nn_pairs: |
| emit_records(records, schema_text, r["question"], r.get("evidence", "") or "", r["db_id"], na, nb, |
| label_idx_1based=-1, kind="nn") |
| n_emitted += 2 |
| by_db_count[r["db_id"]] = by_db_count.get(r["db_id"], 0) + 1 |
|
|
| print(f" BIRD-train: questions processed={n_q}, gold injected={n_gold_added}, records emitted={n_emitted}", flush=True) |
| return records |
|
|
|
|
| def process_synsql(args, rng): |
| """Process SynSQL candidates (gold + synthetic wrong variations).""" |
| records = [] |
| n_q = 0 |
| n_emitted = 0 |
| with open(args.input) as f: |
| for line in f: |
| line = line.strip() |
| if not line: continue |
| rec = json.loads(line) |
| n_q += 1 |
| cands = rec.get("candidates", []) |
| seen = set() |
| uniq = [] |
| for c in cands: |
| norm = re.sub(r"\s+", " ", (c.get("sql") or "").strip().lower()) |
| if not norm or norm in seen: continue |
| seen.add(norm) |
| uniq.append({"sql": c["sql"], "exec": "(synthetic: no execution available)", |
| "is_correct": bool(c.get("is_correct")), "norm": norm}) |
| yes = [c for c in uniq if c["is_correct"]] |
| no = [c for c in uniq if not c["is_correct"]] |
| if not (yes and no): continue |
|
|
| |
| schema_text = f"(SynSQL database: {rec.get('db_id', 'unknown')}; full schema unavailable.)" |
|
|
| |
| yes_toks = [tokens(y["sql"]) for y in yes] |
| no_scored = [] |
| for ni, nc in enumerate(no): |
| t = tokens(nc["sql"]) |
| best = max((jaccard(t, ty) for ty in yes_toks), default=0.0) |
| no_scored.append((best, ni)) |
| no_scored.sort(reverse=True) |
| ranked_no = [no[i] for _, i in no_scored] |
|
|
| yn_pairs = [] |
| for ys in yes: |
| for nc in ranked_no[: args.max_yn]: |
| yn_pairs.append((ys, nc)) |
| if len(yn_pairs) >= args.max_yn: break |
| if len(yn_pairs) >= args.max_yn: break |
|
|
| nn_pairs = [] |
| if len(no) >= 2 and args.max_nn > 0: |
| rng.shuffle(no) |
| nn_pairs.append((no[0], no[1])) |
|
|
| for ys, nc in yn_pairs: |
| emit_records(records, schema_text, rec["question"], rec.get("evidence", "") or "", rec.get("db_id", ""), |
| ys, nc, label_idx_1based=1, kind="yn") |
| n_emitted += 2 |
| for na, nb in nn_pairs: |
| emit_records(records, schema_text, rec["question"], rec.get("evidence", "") or "", rec.get("db_id", ""), |
| na, nb, label_idx_1based=-1, kind="nn") |
| n_emitted += 2 |
|
|
| print(f" SynSQL: questions processed={n_q}, records emitted={n_emitted}", flush=True) |
| return records |
|
|
|
|
| def main(): |
| ap = argparse.ArgumentParser() |
| ap.add_argument("--source", choices=["bird_train", "synsql"], required=True) |
| ap.add_argument("--input", required=True) |
| ap.add_argument("--out", required=True) |
| ap.add_argument("--max_yn", type=int, default=6, help="max (YES, NO) raw pairs per Q") |
| ap.add_argument("--max_nn", type=int, default=1, help="max (NO, NO) raw pairs per Q") |
| args = ap.parse_args() |
|
|
| rng = random.Random(42) |
| schema_cache = {} |
|
|
| if args.source == "bird_train": |
| records = process_bird(args, rng, schema_cache) |
| else: |
| records = process_synsql(args, rng) |
|
|
| rng.shuffle(records) |
| print(f"Total records: {len(records)}", flush=True) |
| if records: |
| from collections import Counter |
| lab = Counter(r["label_idx"] for r in records) |
| print(f" label dist: {dict(sorted(lab.items()))}", flush=True) |
| avg_p = sum(len(r["prompt"]) for r in records) / len(records) |
| print(f" avg prompt chars: {avg_p:.0f}", flush=True) |
| n_q = len(set(r["question"] for r in records)) |
| n_db = len(set(r["db_id"] for r in records)) |
| print(f" unique Qs: {n_q}, unique DBs: {n_db}", flush=True) |
|
|
| |
| DatasetDict({"train": Dataset.from_list(records)}).save_to_disk(args.out) |
| print(f"SAVED: {args.out}", flush=True) |
|
|
|
|
| if __name__ == "__main__": |
| main() |
|
|