File size: 18,665 Bytes
4204e21 | 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 429 430 431 432 | """
Financial Knowledge Graph - Haystack Generator
================================================
Generates entities.json, accounts.json, and transactions.json
for an AI Reinforcement Learning environment.
Usage:
python generate_haystack.py # Generate haystack only
python generate_haystack.py --inject manual_tasks.json # Inject manual fraud tasks
"""
import json
import random
import argparse
from datetime import datetime, timedelta, timezone
from pathlib import Path
from faker import Faker
# ββ Reproducibility ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
SEED = 42
random.seed(SEED)
fake = Faker()
Faker.seed(SEED)
# ββ Volume constants ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
NUM_ENTITIES = 300
NUM_ACCOUNTS = 400
NUM_TRANSACTIONS = 5_000
PCT_INDIVIDUAL = 0.80 # 80 % Individual, 20 % Corporate
PCT_ACTIVE = 0.95 # 95 % Active accounts
# ββ Time window βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
NOW = datetime.now(timezone.utc)
SIX_MONTHS_AGO = NOW - timedelta(days=182)
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# STEP 1 β PROCEDURAL GENERATION
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def make_entity_id(n: int) -> str:
return f"ENT-{n:04d}"
def make_account_id(n: int) -> str:
return f"ACC-{n:04d}"
def make_txn_id(n: int) -> str:
return f"TXN-{n:06d}"
def generate_entities(count: int = NUM_ENTITIES) -> list[dict]:
"""Generate Individual and Corporate entities."""
entities: list[dict] = []
n_individual = round(count * PCT_INDIVIDUAL)
# ββ Individuals first (needed as directors for Corporates) βββββββββββββββ
for i in range(1, n_individual + 1):
entities.append({
"entity_id": make_entity_id(i),
"name": fake.name(),
"type": "Individual",
"registration_address": fake.address().replace("\n", ", "),
"directors": [],
})
individual_ids = [e["entity_id"] for e in entities]
# ββ Corporates ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
for i in range(n_individual + 1, count + 1):
num_directors = random.randint(1, 3)
directors = random.sample(individual_ids, k=num_directors)
entities.append({
"entity_id": make_entity_id(i),
"name": fake.company(),
"type": "Corporate",
"registration_address": fake.address().replace("\n", ", "),
"directors": directors,
})
return entities
def generate_accounts(entities: list[dict], count: int = NUM_ACCOUNTS) -> list[dict]:
"""Assign accounts randomly to entities."""
entity_ids = [e["entity_id"] for e in entities]
accounts: list[dict] = []
for i in range(1, count + 1):
accounts.append({
"account_id": make_account_id(i),
"owner_entity_id": random.choice(entity_ids),
"status": "Active" if random.random() < PCT_ACTIVE else "Closed",
})
return accounts
# ββ Memo / amount helpers βββββββββββββββββββββββββββββββββββββββββββββββββββββ
def _corp_to_individual_tx() -> tuple[str, float]:
memo = random.choice([
"Payroll", "Salary Q3", "Salary Q4", "Expense Reimbursement",
"Bonus Payment", "Contractor Fee", "Freelance Invoice",
])
amount = round(random.uniform(2_000, 10_000), 2)
return memo, amount
def _corp_to_corp_tx() -> tuple[str, float]:
memo = random.choice([
"Server Hosting", "Consulting Retainer", "Office Supplies",
f"Invoice #{random.randint(1000, 9999)}", "Software License",
"Marketing Services", "Logistics Fee", "Partnership Distribution",
])
amount = round(random.uniform(500, 50_000), 2)
return memo, amount
def _individual_to_corp_tx() -> tuple[str, float]:
memo = random.choice([
"Utility Bill", "Coffee", "Gym Membership", "Online Shopping",
"Streaming Subscription", "Insurance Premium", "Rent Payment",
])
amount = round(random.uniform(5, 200), 2)
return memo, amount
def _individual_to_individual_tx() -> tuple[str, float]:
memo = random.choice([
"Dinner split", "Birthday gift", "Loan repayment", "Shared expenses",
"Concert tickets", "Rent share", "",
])
amount = round(random.uniform(10, 500), 2)
return memo, amount
def _random_timestamp() -> str:
delta_seconds = (NOW - SIX_MONTHS_AGO).total_seconds()
rand_seconds = random.uniform(0, delta_seconds)
ts = SIX_MONTHS_AGO + timedelta(seconds=rand_seconds)
return ts.isoformat()
def generate_transactions(
accounts: list[dict],
entities: list[dict],
count: int = NUM_TRANSACTIONS,
id_offset: int = 0,
) -> list[dict]:
"""Generate semantically-typed transactions between accounts."""
# Build a lookup: account_id β entity type
entity_type: dict[str, str] = {e["entity_id"]: e["type"] for e in entities}
acct_to_entity: dict[str, str] = {
a["account_id"]: a["owner_entity_id"] for a in accounts
}
active_accounts = [a["account_id"] for a in accounts if a["status"] == "Active"]
if len(active_accounts) < 2:
raise ValueError("Not enough active accounts to generate transactions.")
transactions: list[dict] = []
for i in range(1, count + 1):
sender_acct = random.choice(active_accounts)
receiver_acct = random.choice(active_accounts)
while receiver_acct == sender_acct:
receiver_acct = random.choice(active_accounts)
sender_type = entity_type.get(acct_to_entity.get(sender_acct, ""), "Individual")
receiver_type = entity_type.get(acct_to_entity.get(receiver_acct, ""), "Individual")
if sender_type == "Corporate" and receiver_type == "Individual":
memo, amount = _corp_to_individual_tx()
elif sender_type == "Corporate" and receiver_type == "Corporate":
memo, amount = _corp_to_corp_tx()
elif sender_type == "Individual" and receiver_type == "Corporate":
memo, amount = _individual_to_corp_tx()
else:
memo, amount = _individual_to_individual_tx()
transactions.append({
"txn_id": make_txn_id(i + id_offset),
"sender_account": sender_acct,
"receiver_account": receiver_acct,
"amount": amount,
"timestamp": _random_timestamp(),
"memo_text": memo,
})
return transactions
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# STEP 3 β INTEGRATION HOOKS
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def _camouflage_transactions(
manual_account_ids: list[str],
haystack_account_ids: list[str],
entities: list[dict],
accounts: list[dict],
txn_id_start: int,
) -> list[dict]:
"""
Generate 5-10 'normal' transactions that bridge each manual account to
random haystack accounts, so manual accounts don't appear as isolated islands.
"""
entity_type: dict[str, str] = {e["entity_id"]: e["type"] for e in entities}
acct_to_entity: dict[str, str] = {
a["account_id"]: a["owner_entity_id"] for a in accounts
}
camouflage: list[dict] = []
counter = txn_id_start
for manual_acct in manual_account_ids:
n_bridge_txns = random.randint(5, 10)
for _ in range(n_bridge_txns):
haystack_acct = random.choice(haystack_account_ids)
# Randomly decide direction (manual sends or receives)
if random.random() < 0.5:
sender_acct, receiver_acct = manual_acct, haystack_acct
else:
sender_acct, receiver_acct = haystack_acct, manual_acct
sender_type = entity_type.get(acct_to_entity.get(sender_acct, ""), "Individual")
receiver_type = entity_type.get(acct_to_entity.get(receiver_acct, ""), "Individual")
if sender_type == "Corporate" and receiver_type == "Individual":
memo, amount = _corp_to_individual_tx()
elif sender_type == "Corporate" and receiver_type == "Corporate":
memo, amount = _corp_to_corp_tx()
elif sender_type == "Individual" and receiver_type == "Corporate":
memo, amount = _individual_to_corp_tx()
else:
memo, amount = _individual_to_individual_tx()
camouflage.append({
"txn_id": make_txn_id(counter),
"sender_account": sender_acct,
"receiver_account": receiver_acct,
"amount": amount,
"timestamp": _random_timestamp(),
"memo_text": memo,
"_camouflage": True, # debug tag β remove if unwanted
})
counter += 1
return camouflage
def inject_manual_tasks(
haystack_data: dict,
manual_json_path: str | Path,
) -> dict:
"""
Load hand-written manual_tasks.json and merge it into the haystack.
Expected manual_tasks.json schema:
{
"entities": [ { ...entity fields... }, ... ],
"accounts": [ { ...account fields... }, ... ],
"transactions": [ { ...transaction fields... }, ... ]
}
Returns the merged dataset dict.
"""
manual_path = Path(manual_json_path)
if not manual_path.exists():
raise FileNotFoundError(f"Manual tasks file not found: {manual_path}")
with manual_path.open() as fh:
manual: dict = json.load(fh)
# ββ Validate top-level keys βββββββββββββββββββββββββββββββββββββββββββββββ
for key in ("entities", "accounts", "transactions"):
if key not in manual:
raise ValueError(
f"manual_tasks.json is missing the '{key}' key. "
"Please check the expected schema in the docstring."
)
print(f" Injecting {len(manual['entities'])} manual entities β¦")
print(f" Injecting {len(manual['accounts'])} manual accounts β¦")
print(f" Injecting {len(manual['transactions'])} manual transactions β¦")
# ββ Collect IDs already in the haystack to detect collisions βββββββββββββ
existing_entity_ids = {e["entity_id"] for e in haystack_data["entities"]}
existing_acct_ids = {a["account_id"] for a in haystack_data["accounts"]}
existing_txn_ids = {t["txn_id"] for t in haystack_data["transactions"]}
for e in manual["entities"]:
if e["entity_id"] in existing_entity_ids:
raise ValueError(
f"Collision: entity_id '{e['entity_id']}' already exists in the haystack. "
"Use IDs outside the ENT-0001 β¦ ENT-0300 range (e.g. ENT-9001)."
)
for a in manual["accounts"]:
if a["account_id"] in existing_acct_ids:
raise ValueError(
f"Collision: account_id '{a['account_id']}' already exists in the haystack. "
"Use IDs outside the ACC-0001 β¦ ACC-0400 range (e.g. ACC-9001)."
)
for t in manual["transactions"]:
if t["txn_id"] in existing_txn_ids:
raise ValueError(
f"Collision: txn_id '{t['txn_id']}' already exists in the haystack. "
"Use IDs outside the TXN-000001 β¦ TXN-005000 range (e.g. TXN-900001)."
)
# ββ Append manual data ββββββββββββββββββββββββββββββββββββββββββββββββββββ
# Build a combined entity + account list so camouflage txns can look up types
combined_entities = haystack_data["entities"] + manual["entities"]
combined_accounts = haystack_data["accounts"] + manual["accounts"]
haystack_data["entities"] += manual["entities"]
haystack_data["accounts"] += manual["accounts"]
haystack_data["transactions"] += manual["transactions"]
# ββ Camouflage: bridge manual accounts to haystack accounts ββββββββββββββ
manual_acct_ids = [a["account_id"] for a in manual["accounts"]]
haystack_acct_ids = [
a["account_id"]
for a in haystack_data["accounts"]
if a["account_id"] not in set(manual_acct_ids) and a["status"] == "Active"
]
txn_id_start = (
max(
int(t["txn_id"].split("-")[1])
for t in haystack_data["transactions"]
) + 1
)
camouflage = _camouflage_transactions(
manual_account_ids = manual_acct_ids,
haystack_account_ids = haystack_acct_ids,
entities = combined_entities,
accounts = combined_accounts,
txn_id_start = txn_id_start,
)
print(f" Generated {len(camouflage)} camouflage transactions β¦")
haystack_data["transactions"] += camouflage
return haystack_data
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# I/O HELPERS
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def _write_json(obj: list | dict, path: Path) -> None:
path.parent.mkdir(parents=True, exist_ok=True)
with path.open("w", encoding="utf-8") as fh:
json.dump(obj, fh, indent=2, ensure_ascii=False)
print(f" β Wrote {len(obj):,} records β {path}")
def save_dataset(data: dict, output_dir: Path = Path(".")) -> None:
"""Write the three JSON files to output_dir."""
_write_json(data["entities"], output_dir / "entities.json")
_write_json(data["accounts"], output_dir / "accounts.json")
_write_json(data["transactions"], output_dir / "transactions.json")
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# MAIN
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def main() -> None:
parser = argparse.ArgumentParser(
description="Generate a financial Knowledge Graph haystack."
)
parser.add_argument(
"--inject",
metavar="MANUAL_JSON",
help="Path to hand-written manual_tasks.json to inject into the haystack.",
)
parser.add_argument(
"--output-dir",
default=".",
metavar="DIR",
help="Directory where the three JSON files will be written (default: cwd).",
)
args = parser.parse_args()
output_dir = Path(args.output_dir)
# ββ 1. Build the haystack βββββββββββββββββββββββββββββββββββββββββββββββββ
print("\nββ Step 1: Generating entities β¦")
entities = generate_entities()
print(f" β {len(entities)} entities "
f"({sum(1 for e in entities if e['type']=='Individual')} individuals, "
f"{sum(1 for e in entities if e['type']=='Corporate')} corporates)")
print("ββ Step 2: Generating accounts β¦")
accounts = generate_accounts(entities)
print(f" β {len(accounts)} accounts "
f"({sum(1 for a in accounts if a['status']=='Active')} active)")
print("ββ Step 3: Generating transactions β¦")
transactions = generate_transactions(accounts, entities)
print(f" β {len(transactions):,} transactions")
dataset: dict = {
"entities": entities,
"accounts": accounts,
"transactions": transactions,
}
# ββ 2. Optionally inject manual fraud tasks βββββββββββββββββββββββββββββββ
if args.inject:
print(f"\nββ Injecting manual tasks from: {args.inject}")
dataset = inject_manual_tasks(dataset, args.inject)
# ββ 3. Write outputs ββββββββββββββββββββββββββββββββββββββββββββββββββββββ
print(f"\nββ Writing JSON files to: {output_dir.resolve()}")
save_dataset(dataset, output_dir)
print("\nβ
Done.\n")
print(" Dataset summary:")
print(f" Entities: {len(dataset['entities']):>6,}")
print(f" Accounts: {len(dataset['accounts']):>6,}")
print(f" Transactions: {len(dataset['transactions']):>6,}")
if __name__ == "__main__":
main() |