File size: 8,935 Bytes
532d883 e4ab884 532d883 | 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 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 | import argparse
import json
import random
import time
from pathlib import Path
from tqdm import tqdm
from google import genai
from google.genai import types
from helpers.scenarios import SCENARIOS
from helpers.styles import PERSONAS, QUIRKS, SPEAKING_STYLES, GRAMMAR_QUIRKS, TONES
SYSTEM_PROMPT = """\
You are a synthetic data generator for Z-number decision matrices.
The idea is
Your task: Given a decision scenario, generate TWO things:
1. A realistic, subjective conversational user query (as if a real person is thinking out loud about this decision)
2. The corresponding Z-number decision matrix extracted from that query
## User Query Guidelines:
- Write in first person, casual/conversational tone
- Include hedging language ("I think", "probably", "not sure", "maybe")
- Be subjective, messy, unstructured, uncertain, overloaded with information, overthinking
- Describe preferences using natural expressions like: "amazing", "terrible", "pretty good", "kind of a nightmare", "super expensive", "really matters to me", "not a huge deal", "I've heard it's cheaper", "supposedly independent", etc.
- The Z-number matrix is YOUR extraction/interpretation of the user's natural rambling thoughts
- It MUST NOT contain any Z-Number Scales
## Decision Matrix Format:
Return a Markdown table:
| | criterion_1 | criterion_2 | ... |
|---|---|---|---|
| type | benefit | cost | ... |
| alt_1 | 4:3 | -3:4 | ... |
| alt_2 | 3:4 | -2:5 | ... |
| weight | 5:4 | 3:3 | ... |
## Z-Number Scales for Decision Matrix:
- Value (A-part):
- benefit: 5 (excellent) β 4 (good) β 3 (moderate) β 2 (poor) β 1 (very poor)
- cost: -1 (very low cost) β -2 (low) β -3 (moderate) β -4 (high) β -5 (very high cost)
- Confidence (B-part): 5 (very confident) β 4 (confident) β 3 (somewhat confident) β 2 (uncertain) β 1 (very uncertain)
Rules:
- First row: criterion names (snake_case)
- Second row: "type" then "benefit" or "cost"
- Middle rows: alternative names, then VALUE:CONFIDENCE pairs
- Last row: "weight" with importance weights (positive 1-5 only)
- VALUE: positive (1-5) for benefits, negative (-1 to -5) for costs
- CONFIDENCE: always positive (1-5)
"""
USER_PROMPT_TEMPLATE = """\
Generate synthetic training data for the following:
**Scenario:** {scenario}
**Number of alternatives:** {n_alternatives}
**Number of criteria:** {n_criteria}
**Match this style user_query:**
- **Persona:** {persona}
- **Tone:** {tone}
- **Speaking style:** {speaking_style}
- **Must include this quirk:** {quirk}
- **Grammar quirk:** {grammar_quirk}
Respond with valid JSON only:
{{
"user_query": "<the messy subjective conversational user query>",
"decision_matrix": "<the markdown table>"
}}
"""
def sample_scenario() -> tuple[str, str]:
"""Sample a random scenario, returns (category, scenario)."""
category = random.choice(list(SCENARIOS.keys()))
scenario = random.choice(SCENARIOS[category])
return category, scenario
def generate_sample(
client: genai.Client,
model: str,
scenario: str,
n_alternatives: int,
n_criteria: int,
style: dict,
max_retries: int = 3,
) -> dict | None:
"""Generate a single training sample."""
system_prompt = SYSTEM_PROMPT
user_prompt = USER_PROMPT_TEMPLATE.format(
scenario=scenario,
n_alternatives=n_alternatives,
n_criteria=n_criteria,
persona=style["persona"],
tone=style["tone"],
speaking_style=style["speaking_style"],
quirk=style["quirk"],
grammar_quirk=style["grammar_quirk"],
)
for attempt in range(max_retries):
try:
response = client.models.generate_content(
model=model,
contents=[
types.Content(
role="user",
parts=[types.Part(text=system_prompt + "\n\n" + user_prompt)]
)
],
config=types.GenerateContentConfig(
thinking_config=types.ThinkingConfig(thinking_level="minimal"),
response_mime_type="application/json",
temperature=1.0,
),
)
# Parse response
text = response.text.strip() # type: ignore
data = json.loads(text)
if "user_query" in data and "decision_matrix" in data:
return data
except json.JSONDecodeError as e:
print(f" [Attempt {attempt + 1}] JSON parse error: {e}")
except Exception as e:
print(f" [Attempt {attempt + 1}] Error: {e}")
time.sleep(2 ** attempt) # Exponential backoff
return None
def generate_dataset(
api_key: str,
n_samples: int,
output_path: Path,
model: str = "gemini-3-flash-preview",
min_alternatives: int = 2,
max_alternatives: int = 5,
min_criteria: int = 3,
max_criteria: int = 7,
) -> None:
"""Generate the full dataset."""
client = genai.Client(api_key=api_key)
samples = []
failed = 0
print(f"Generating {n_samples} samples...")
print(f"Model: {model}")
print(f"Alternatives: {min_alternatives}-{max_alternatives}")
print(f"Criteria: {min_criteria}-{max_criteria}")
print("-" * 50)
for i in tqdm(range(n_samples)):
# Sample parameters
category, scenario = sample_scenario()
n_alt = random.randint(min_alternatives, max_alternatives)
n_crit = random.randint(min_criteria, max_criteria)
style = dict(
persona=random.choice(PERSONAS),
tone=random.choice(TONES),
quirk=random.choice(QUIRKS),
grammar_quirk=random.choice(GRAMMAR_QUIRKS),
speaking_style=random.choice(SPEAKING_STYLES),
)
print(f"[{i + 1}/{n_samples}] {scenario} ({n_alt} alts, {n_crit} criteria) | Style: {style}")
result = generate_sample(
client=client,
model=model,
scenario=scenario,
n_alternatives=n_alt,
n_criteria=n_crit,
style=style,
)
if result:
sample = {
"id": i,
"category": category,
"scenario": scenario,
"n_alternatives": n_alt,
"n_criteria": n_crit,
"user_query": result["user_query"],
"decision_matrix": result["decision_matrix"],
"style": style,
}
samples.append(sample)
# Write incrementally
with open(output_path, "a", encoding="utf-8") as f:
f.write(json.dumps(sample, ensure_ascii=False) + "\n")
else:
failed += 1
print(f" β Failed to generate sample")
# Rate limiting (be nice to the API)
if (i + 1) % 1 == 0:
time.sleep(1)
print("-" * 50)
print(f"β
Generated: {len(samples)} samples")
print(f"β Failed: {failed} samples")
print(f"π Output: {output_path}")
# cli
def main():
parser = argparse.ArgumentParser(
description="Generate Z-number decision matrix training data"
)
parser.add_argument(
"--n",
type=int,
default=100,
help="Number of samples to generate (default: 100)"
)
parser.add_argument(
"--api-key",
type=str,
required=True,
help="Gemini API key"
)
parser.add_argument(
"--output",
type=str,
default="train.jsonl",
help="Output JSONL file path (default: train.jsonl)"
)
parser.add_argument(
"--model",
type=str,
default="gemini-3-flash-preview",
help="Model to use (default: gemini-3-flash-preview)"
)
parser.add_argument(
"--min-alt",
type=int,
default=2,
help="Minimum number of alternatives (default: 2)"
)
parser.add_argument(
"--max-alt",
type=int,
default=5,
help="Maximum number of alternatives (default: 5)"
)
parser.add_argument(
"--min-crit",
type=int,
default=3,
help="Minimum number of criteria (default: 3)"
)
parser.add_argument(
"--max-crit",
type=int,
default=7,
help="Maximum number of criteria (default: 7)"
)
args = parser.parse_args()
output_path = Path(args.output)
generate_dataset(
api_key=args.api_key,
n_samples=args.n,
output_path=output_path,
model=args.model,
min_alternatives=args.min_alt,
max_alternatives=args.max_alt,
min_criteria=args.min_crit,
max_criteria=args.max_crit,
)
if __name__ == "__main__":
main() |