File size: 15,100 Bytes
2d7e335 | 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 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 | """
AAM Diffusion LLM — Synthetic Data Generator
Generates synthetic Graph→Narrative training pairs for
pre-training the diffusion model before real data is available.
The synthetic data follows the AAM pattern:
- Graph conditioning: evidence, compositions, anomalies, reasoning
- Target narrative: natural language text that represents the graph data
This is essential because:
1. We need training data before the model can be used
2. The data must follow the Graph→Narrative format specifically
3. Synthetic data helps bootstrap the model's ability to
arrange sentences from structured evidence
Analogi: Seperti Jin Soun berlatih dengan kasus-kasus fiktif
sebelum menghadapi kasus nyata — data sintetis memberikan
"latihan dasar" sebelum data asli tersedia.
"""
from __future__ import annotations
import json
import logging
import random
from dataclasses import dataclass, field
from pathlib import Path
from typing import Optional
logger = logging.getLogger(__name__)
# --- Templates for synthetic data generation ---
# Indonesian narrative templates
ID_TEMPLATES = {
"analysis": [
"Berdasarkan analisis terhadap {trigger}: {evidence_summary}. {reasoning_summary}. Tingkat keyakinan: {confidence_pct}.",
"Analisis menunjukkan bahwa {trigger} terkait dengan {evidence_summary}. {anomaly_summary}. Kesimpulan: {reasoning_summary}.",
"Dari data yang tersedia, {trigger} memiliki koneksi ke {evidence_summary}. {reasoning_summary}. Confidence: {confidence_pct}.",
"Hasil investigasi: {trigger}. Bukti: {evidence_summary}. {anomaly_summary}. {reasoning_summary}.",
"Temuan: {trigger} berkorelasi dengan {evidence_summary}. Catatan: {anomaly_summary}. Analisis: {reasoning_summary}.",
],
"evidence_summary": [
"bukti menunjukkan {nodes}",
"data dari {nodes} mengindikasikan",
"{nodes} menjadi kunci",
"informasi dari {nodes} mengarah ke",
"sumber {nodes} mengkonfirmasi",
],
"anomaly_summary": [
"Anomali terdeteksi: {anomalies}",
"Perhatian: {anomalies}",
"Pola tidak lazim: {anomalies}",
"Ketidaksesuaian ditemukan: {anomalies}",
"Terdapat kejanggalan: {anomalies}",
],
"reasoning_summary": [
"Langkah penalaran: {steps}",
"Proses deduksi: {steps}",
"Analisis bertahap: {steps}",
"Penelusuran logika: {steps}",
"Rantai penalaran: {steps}",
],
}
# English narrative templates
EN_TEMPLATES = {
"analysis": [
"Based on analysis of {trigger}: {evidence_summary}. {reasoning_summary}. Confidence: {confidence_pct}.",
"Analysis indicates that {trigger} is related to {evidence_summary}. {anomaly_summary}. Conclusion: {reasoning_summary}.",
"From available data, {trigger} has connections to {evidence_summary}. {reasoning_summary}. Confidence level: {confidence_pct}.",
"Investigation results: {trigger}. Evidence: {evidence_summary}. {anomaly_summary}. {reasoning_summary}.",
"Findings: {trigger} correlates with {evidence_summary}. Note: {anomaly_summary}. Analysis: {reasoning_summary}.",
],
"evidence_summary": [
"evidence shows {nodes}",
"data from {nodes} indicates",
"{nodes} are key factors",
"information from {nodes} points to",
"sources {nodes} confirm",
],
"anomaly_summary": [
"Anomaly detected: {anomalies}",
"Note: {anomalies}",
"Unusual pattern: {anomalies}",
"Inconsistency found: {anomalies}",
"Irregularity observed: {anomalies}",
],
"reasoning_summary": [
"Reasoning steps: {steps}",
"Deductive process: {steps}",
"Step-by-step analysis: {steps}",
"Logical trace: {steps}",
"Reasoning chain: {steps}",
],
}
# Sample graph data for synthetic generation
SAMPLE_EVIDENCE_NODES = {
"id": [
"Hefei", "Diancang Five Swords", "Ju Jangmok", "Snow Plum Pill",
"Gyeryong Merchant Guild", "Simhyeon Pavilion", "Martial Alliance",
"Gu Ilmu", "Jang Hangi", "Blood Serpent Dance Step",
"taeul_sect", "dark_faction", "hefei_branch",
],
"en": [
"Hefei", "Diancang Five Swords", "Ju Jangmok", "Snow Plum Pill",
"Gyeryong Merchant Guild", "Simhyeon Pavilion", "Martial Alliance",
"Gu Ilmu", "Jang Hangi", "Blood Serpent Dance Step",
"taeul_sect", "dark_faction", "hefei_branch",
],
}
SAMPLE_TRIGGERS = {
"id": [
"Siapa yang mencuri Snow Plum Pill?",
"Analisis pergerakan Diancang Five Swords",
"Hubungan antara Ju Jangmok dan pencurian",
"Anomali dalam laporan Hefei",
"Investigasi inside job di Diancang",
"Pola konsumsi Snow Plum Pill",
"Cross-reference kejadian di Hefei",
"Evaluasi kepercayaan sumber informasi",
"Prediksi tindakan berikutnya tersangka",
"Pattern completion dari bukti terpisah",
],
"en": [
"Who stole the Snow Plum Pill?",
"Analysis of Diancang Five Swords movements",
"Connection between Ju Jangmok and the theft",
"Anomalies in the Hefei reports",
"Investigation of inside job at Diancang",
"Pattern of Snow Plum Pill consumption",
"Cross-referencing events in Hefei",
"Source trustworthiness evaluation",
"Predicting next suspect actions",
"Pattern completion from disparate evidence",
],
}
SAMPLE_ANOMALIES = {
"id": [
"Tidak ada konsumsi pil baru di pasar gelap",
"Pencuri menghilang tanpa jejak",
"Success rate pair lebih tinggi dari biasanya",
"Misi di-assign dari dalam Diancang sendiri",
"Ju Jangmok menghilang hari yang sama dengan pencurian",
"Tidak ada pencuri baru setelah Ju Jangmok menghilang",
],
"en": [
"No new pill consumption in black market",
"Thief disappeared without a trace",
"Pair success rate unusually high",
"Mission assigned from within Diancang itself",
"Ju Jangmok disappeared same day as theft",
"No new thief appeared after Ju Jangmok vanished",
],
}
SAMPLE_REASONING_STEPS = {
"id": [
"Recall: Ingat semua laporan terkait Hefei",
"Cross-reference: Bandingkan tanggal kejadian",
"Filter: Eliminasi yang tidak relevan",
"Anomaly: Deteksi ketidaksesuaian pola",
"Pattern: Hubungkan fragmen terpisah",
"Compose: Susun kesimpulan dari bukti",
"Predict: Perkirakan tindakan berikutnya",
"Verify: Cek konsistensi kesimpulan",
],
"en": [
"Recall: Remember all reports related to Hefei",
"Cross-reference: Compare event dates",
"Filter: Eliminate irrelevant data",
"Anomaly: Detect pattern inconsistency",
"Pattern: Connect disparate fragments",
"Compose: Assemble conclusion from evidence",
"Predict: Estimate next actions",
"Verify: Check conclusion consistency",
],
}
class SyntheticDataGenerator:
"""Generate synthetic Graph→Narrative training pairs.
This generator creates training data that follows the AAM
pattern: structured graph conditioning → natural language narrative.
The generated data covers:
- Various trigger types (questions, analysis requests)
- Different numbers of evidence nodes (1-50)
- Various anomaly patterns
- Different reasoning chain lengths
- Confidence distributions
- Both Indonesian and English
Usage:
generator = SyntheticDataGenerator()
examples = generator.generate(n=1000, language="id")
generator.save(examples, "training_data.jsonl")
"""
def __init__(
self,
seed: int = 42,
language: str = "id",
):
"""Initialize the synthetic data generator.
Args:
seed: Random seed for reproducibility.
language: Default language for generation.
"""
self.seed = seed
self.language = language
random.seed(seed)
def generate(
self,
n: int = 1000,
language: Optional[str] = None,
min_evidence: int = 2,
max_evidence: int = 15,
anomaly_probability: float = 0.6,
reasoning_probability: float = 0.8,
) -> list[dict]:
"""Generate synthetic training examples.
Args:
n: Number of examples to generate.
language: Language override.
min_evidence: Minimum evidence nodes per example.
max_evidence: Maximum evidence nodes per example.
anomaly_probability: Probability of including anomalies.
reasoning_probability: Probability of including reasoning steps.
Returns:
List of training example dictionaries.
"""
lang = language or self.language
templates = ID_TEMPLATES if lang == "id" else EN_TEMPLATES
evidence_pool = SAMPLE_EVIDENCE_NODES.get(lang, SAMPLE_EVIDENCE_NODES["en"])
trigger_pool = SAMPLE_TRIGGERS.get(lang, SAMPLE_TRIGGERS["en"])
anomaly_pool = SAMPLE_ANOMALIES.get(lang, SAMPLE_ANOMALIES["en"])
reasoning_pool = SAMPLE_REASONING_STEPS.get(lang, SAMPLE_REASONING_STEPS["en"])
examples = []
for _ in range(n):
# Random trigger
trigger = random.choice(trigger_pool)
# Random evidence nodes
n_evidence = random.randint(min_evidence, max_evidence)
evidence = random.sample(evidence_pool, min(n_evidence, len(evidence_pool)))
# Random confidence map
confidence_map = {
node: round(random.uniform(0.3, 1.0), 2)
for node in evidence
}
# Random anomalies
anomalies = []
if random.random() < anomaly_probability:
n_anomalies = random.randint(1, 3)
anomalies = random.sample(anomaly_pool, min(n_anomalies, len(anomaly_pool)))
# Random reasoning steps
reasoning_steps = []
if random.random() < reasoning_probability:
n_steps = random.randint(2, 6)
reasoning_steps = random.sample(reasoning_pool, min(n_steps, len(reasoning_pool)))
# Source trust
source_trust = round(random.uniform(0.5, 1.0), 2)
# Generate narrative from template
narrative = self._generate_narrative(
trigger=trigger,
evidence=evidence,
anomalies=anomalies,
reasoning_steps=reasoning_steps,
confidence_map=confidence_map,
templates=templates,
lang=lang,
)
example = {
"narrative": narrative,
"trigger": trigger,
"evidence_nodes": evidence,
"compositions": [],
"confidence_map": confidence_map,
"anomalies": anomalies,
"reasoning_steps": reasoning_steps,
"source_trust": source_trust,
"language": lang,
"source": "synthetic",
}
examples.append(example)
logger.info("Generated %d synthetic examples (language=%s)", n, lang)
return examples
def _generate_narrative(
self,
trigger: str,
evidence: list[str],
anomalies: list[str],
reasoning_steps: list[str],
confidence_map: dict[str, float],
templates: dict,
lang: str,
) -> str:
"""Generate a narrative from templates.
Args:
trigger: Trigger text.
evidence: Evidence node labels.
anomalies: Anomaly descriptions.
reasoning_steps: Reasoning step descriptions.
confidence_map: Confidence scores.
templates: Template dictionary.
lang: Language code.
Returns:
Generated narrative string.
"""
# Build narrative parts
evidence_str = ", ".join(evidence[:5])
avg_confidence = sum(confidence_map.values()) / max(len(confidence_map), 1)
# Fill templates
evidence_summary = random.choice(templates["evidence_summary"]).format(
nodes=evidence_str
)
anomaly_summary = ""
if anomalies:
anomaly_summary = random.choice(templates["anomaly_summary"]).format(
anomalies="; ".join(anomalies[:3])
)
reasoning_summary = ""
if reasoning_steps:
reasoning_summary = random.choice(templates["reasoning_summary"]).format(
steps="; ".join(reasoning_steps[:4])
)
# Main narrative
narrative = random.choice(templates["analysis"]).format(
trigger=trigger,
evidence_summary=evidence_summary,
anomaly_summary=anomaly_summary,
reasoning_summary=reasoning_summary,
confidence_pct=f"{avg_confidence:.0%}",
)
return narrative
def save(
self,
examples: list[dict],
path: str | Path,
) -> None:
"""Save examples to JSONL file.
Args:
examples: List of example dictionaries.
path: Output file path.
"""
path = Path(path)
path.parent.mkdir(parents=True, exist_ok=True)
with open(path, "w", encoding="utf-8") as f:
for example in examples:
f.write(json.dumps(example, ensure_ascii=False) + "\n")
logger.info("Saved %d examples to %s", len(examples), path)
@classmethod
def generate_training_split(
cls,
output_dir: str | Path,
n_train: int = 10000,
n_val: int = 500,
language: str = "id",
seed: int = 42,
) -> tuple[Path, Path]:
"""Generate and save train/val splits.
Args:
output_dir: Output directory.
n_train: Number of training examples.
n_val: Number of validation examples.
language: Language for generation.
seed: Random seed.
Returns:
Tuple of (train_path, val_path).
"""
output_dir = Path(output_dir)
output_dir.mkdir(parents=True, exist_ok=True)
generator = cls(seed=seed, language=language)
# Generate training data
train_examples = generator.generate(n=n_train, language=language)
train_path = output_dir / "train.jsonl"
generator.save(train_examples, train_path)
# Generate validation data (different seed)
val_generator = cls(seed=seed + 1, language=language)
val_examples = val_generator.generate(n=n_val, language=language)
val_path = output_dir / "val.jsonl"
val_generator.save(val_examples, val_path)
logger.info(
"Generated training split: %d train, %d val",
n_train, n_val,
)
return train_path, val_path
|