File size: 19,169 Bytes
2c3ddfa 65ecf7e 2c3ddfa 65ecf7e 2c3ddfa 65ecf7e 2c3ddfa 65ecf7e 2c3ddfa 65ecf7e 2c3ddfa 65ecf7e 2c3ddfa 65ecf7e 2c3ddfa 65ecf7e 2c3ddfa 65ecf7e 2c3ddfa 65ecf7e 2c3ddfa 65ecf7e 2c3ddfa 65ecf7e 2c3ddfa 65ecf7e 2c3ddfa 65ecf7e 2c3ddfa 65ecf7e 2c3ddfa 65ecf7e 2c3ddfa 65ecf7e 2c3ddfa 65ecf7e 2c3ddfa 65ecf7e 2c3ddfa 65ecf7e 2c3ddfa 65ecf7e 2c3ddfa 65ecf7e 2c3ddfa 65ecf7e 2c3ddfa 65ecf7e 2c3ddfa 65ecf7e 2c3ddfa 65ecf7e 2c3ddfa 65ecf7e 2c3ddfa 65ecf7e 2c3ddfa 65ecf7e 2c3ddfa 65ecf7e 2c3ddfa 65ecf7e 2c3ddfa 65ecf7e 2c3ddfa 65ecf7e 2c3ddfa 65ecf7e 2c3ddfa 65ecf7e 2c3ddfa 65ecf7e 2c3ddfa 65ecf7e 2c3ddfa 65ecf7e 2c3ddfa | 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 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 | {
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# 01 β Finance Pre-Training: Domain Tokenizer on Real Financial Transactions\n",
"\n",
"**Goal:** Pre-train a 24M-parameter DomainTransformer on 5M synthetic Nigerian financial transactions, demonstrating that the domainTokenizer pipeline works at scale on real-world data.\n",
"\n",
"**Dataset:** [electricsheepafrica/Nigerian-Financial-Transactions-and-Fraud-Detection-Dataset](https://huggingface.co/datasets/electricsheepafrica/Nigerian-Financial-Transactions-and-Fraud-Detection-Dataset) β 5M transactions, 45 features, fraud labels.\n",
"\n",
"**Pipeline:**\n",
"1. Load data from HuggingFace Hub\n",
"2. Explore and profile the dataset\n",
"3. Convert to FINANCE_SCHEMA events, group by user\n",
"4. Build domain tokenizer (special tokens + BPE)\n",
"5. Pack into CLM training dataset\n",
"6. Pre-train 24M DomainTransformer (NoPE, GPT-style)\n",
"7. Inspect learned representations\n",
"\n",
"**Hardware:** L4 GPU (24GB VRAM) β 24M model fits comfortably.\n",
"\n",
"**Reference:** Nubank nuFormer ([arXiv:2507.23267](https://arxiv.org/abs/2507.23267)) β same architecture pattern."
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Setup"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"# Uncomment and run once to install dependencies:\n",
"# !pip install datasets transformers torch accelerate tokenizers numpy pandas matplotlib scikit-learn wandb"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"import logging\n",
"import time\n",
"import pickle\n",
"from datetime import datetime\n",
"from collections import Counter\n",
"\n",
"import numpy as np\n",
"import pandas as pd\n",
"import matplotlib.pyplot as plt\n",
"import torch\n",
"from datasets import load_dataset\n",
"\n",
"# If running from cloned repo, add src/ to path\n",
"import sys, os\n",
"if os.path.exists('../src'):\n",
" sys.path.insert(0, '../src')\n",
"elif os.path.exists('src'):\n",
" sys.path.insert(0, 'src')\n",
"\n",
"from domain_tokenizer import (\n",
" DomainTokenizerBuilder, DomainTransformerConfig,\n",
" DomainTransformerForCausalLM, prepare_clm_dataset, pretrain_domain_model,\n",
")\n",
"from domain_tokenizer.schemas import FINANCE_SCHEMA\n",
"\n",
"logging.basicConfig(level=logging.INFO, format='%(asctime)s %(message)s')\n",
"print(f'torch: {torch.__version__}, CUDA: {torch.cuda.is_available()}')\n",
"if torch.cuda.is_available():\n",
" print(f'GPU: {torch.cuda.get_device_name(0)}, VRAM: {torch.cuda.get_device_properties(0).total_memory / 1e9:.1f}GB')"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"# wandb setup β logs persist even if notebook kernel disconnects\n",
"# Run `wandb login` in terminal first, or set WANDB_API_KEY env var\n",
"import wandb\n",
"wandb.login()\n",
"\n",
"WANDB_PROJECT = 'domainTokenizer' # all runs grouped under this project\n",
"os.environ['WANDB_PROJECT'] = WANDB_PROJECT\n",
"print(f'wandb project: {WANDB_PROJECT}')"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Step 1 β Load Dataset from HuggingFace Hub\n",
"\n",
"5M synthetic Nigerian fintech transactions with 45 features including merchant categories, device info, risk scores, and fraud labels."
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"%%time\n",
"ds = load_dataset(\n",
" 'electricsheepafrica/Nigerian-Financial-Transactions-and-Fraud-Detection-Dataset',\n",
" split='train',\n",
")\n",
"print(f'Loaded: {len(ds):,} transactions, {len(ds.column_names)} columns')"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"df = ds.to_pandas()\n",
"print(f'Shape: {df.shape}')\n",
"df.head(3)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Step 2 β Data Profiling\n",
"\n",
"Understanding what we're tokenizing: user counts, amount distributions, transaction types, merchant categories."
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"print(f\"Unique senders (users): {df['sender_account'].nunique():,}\")\n",
"print(f\"Timestamp range: {df['timestamp'].min()} to {df['timestamp'].max()}\")\n",
"print(f\"Amount range: {df['amount_ngn'].min():,.2f} to {df['amount_ngn'].max():,.2f} NGN\")\n",
"print(f\"Amount mean: {df['amount_ngn'].mean():,.2f}, median: {df['amount_ngn'].median():,.2f}\")\n",
"print(f\"\\nTransaction types:\\n{df['transaction_type'].value_counts().to_string()}\")\n",
"print(f\"\\nMerchant categories (top 15):\\n{df['merchant_category'].value_counts().head(15).to_string()}\")\n",
"print(f\"\\nFraud rate: {df['is_fraud'].mean()*100:.2f}%\")\n",
"print(f\"\\nPayment channels:\\n{df['payment_channel'].value_counts().to_string()}\")"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"events_per_user = df.groupby('sender_account').size()\n",
"print(f\"Events per user: min={events_per_user.min()}, max={events_per_user.max()}, \"\n",
" f\"mean={events_per_user.mean():.1f}, median={events_per_user.median():.1f}\")\n",
"print(f\"Users with 5+ events: {(events_per_user >= 5).sum():,}\")\n",
"print(f\"Users with 10+ events: {(events_per_user >= 10).sum():,}\")\n",
"\n",
"fig, axes = plt.subplots(1, 3, figsize=(15, 4))\n",
"axes[0].hist(np.log10(df['amount_ngn'].clip(lower=1)), bins=50, edgecolor='black', alpha=0.7)\n",
"axes[0].set_xlabel('log10(Amount NGN)'); axes[0].set_ylabel('Count'); axes[0].set_title('Amount Distribution (log scale)')\n",
"axes[1].hist(events_per_user.clip(upper=50), bins=50, edgecolor='black', alpha=0.7)\n",
"axes[1].set_xlabel('Events per User'); axes[1].set_ylabel('Count'); axes[1].set_title('Events per User')\n",
"df['transaction_type'].value_counts().head(10).plot(kind='barh', ax=axes[2])\n",
"axes[2].set_xlabel('Count'); axes[2].set_title('Transaction Types')\n",
"plt.tight_layout(); plt.show()"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Step 3 β Convert to FINANCE_SCHEMA Events\n",
"\n",
"Mapping:\n",
"- `timestamp` β CalendarTokenizer (month, day-of-week, day-of-month, hour)\n",
"- `amount_ngn` β SignTokenizer (credit/debit) + MagnitudeBucketTokenizer (21 quantile bins)\n",
"- `merchant_category` + `transaction_type` β BPE text description\n",
"- `sender_account` β user grouping key"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"def row_to_event(row):\n",
" dt = datetime.strptime(row['timestamp'][:19], '%Y-%m-%d %H:%M:%S')\n",
" desc = f\"{row['merchant_category']} {row['transaction_type']}\"\n",
" amt = row['amount_ngn']\n",
" if row['transaction_type'] == 'withdrawal':\n",
" amt = -abs(amt)\n",
" return {'amount_sign': amt, 'amount': amt, 'timestamp': dt, 'description': desc}\n",
"\n",
"print(f'Sample event: {row_to_event(df.iloc[0])}')"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"%%time\n",
"MIN_EVENTS = 5\n",
"MAX_EVENTS = 500\n",
"\n",
"user_sequences, user_ids, user_fraud_labels = [], [], []\n",
"for sender, group in df.sort_values('timestamp').groupby('sender_account'):\n",
" if len(group) < MIN_EVENTS:\n",
" continue\n",
" events = [row_to_event(row) for _, row in group.head(MAX_EVENTS).iterrows()]\n",
" user_sequences.append(events)\n",
" user_ids.append(sender)\n",
" user_fraud_labels.append(int(group['is_fraud'].any()))\n",
"\n",
"print(f'Users with {MIN_EVENTS}+ events: {len(user_sequences):,}')\n",
"print(f'Total events: {sum(len(s) for s in user_sequences):,}')\n",
"print(f'Events/user: min={min(len(s) for s in user_sequences)}, max={max(len(s) for s in user_sequences)}, mean={np.mean([len(s) for s in user_sequences]):.1f}')\n",
"print(f'Fraud rate (user-level): {np.mean(user_fraud_labels)*100:.2f}%')"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Step 4 β Build Domain Tokenizer\n",
"\n",
"Hybrid vocabulary: 97 special tokens (sign + amount bins + calendar) + BPE for descriptions."
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"all_events = [e for seq in user_sequences for e in seq]\n",
"print(f'Total events for fitting: {len(all_events):,}')\n",
"\n",
"builder = DomainTokenizerBuilder(FINANCE_SCHEMA)\n",
"builder.fit(all_events)\n",
"\n",
"text_corpus = [e['description'] for e in all_events]\n",
"unique_descs = sorted(set(text_corpus))\n",
"print(f'Unique descriptions: {len(unique_descs)}')\n",
"for d in unique_descs[:10]: print(f\" '{d}'\")\n",
"if len(unique_descs) > 10: print(f' ... and {len(unique_descs) - 10} more')\n",
"\n",
"hf_tokenizer = builder.build(text_corpus=text_corpus, bpe_vocab_size=2000)\n",
"print(f'\\nVocab size: {hf_tokenizer.vocab_size}')\n",
"print(f'Stats: {builder.get_stats()}')"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"print('--- Sample event tokenized ---')\n",
"for i, t in enumerate(builder.tokenize_event(user_sequences[0][0])): print(f' [{i}] {t}')\n",
"\n",
"print(f'\\n--- First user, first 3 events ---')\n",
"seq_tokens = builder.tokenize_sequence(user_sequences[0][:3])\n",
"for i, t in enumerate(seq_tokens): print(f' [{i:3d}] {t}')\n",
"\n",
"seq_ids = hf_tokenizer(' '.join(seq_tokens), add_special_tokens=False)['input_ids']\n",
"unk_id = hf_tokenizer.unk_token_id\n",
"unk_count = sum(1 for i in seq_ids if i == unk_id)\n",
"print(f'\\nUNK rate: {unk_count}/{len(seq_ids)} ({unk_count/max(len(seq_ids),1)*100:.1f}%)')"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Step 5 β Pack into CLM Training Dataset\n",
"\n",
"Sequence packing: concatenate all user sequences, split into fixed-length blocks. 100% token utilization."
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"%%time\n",
"BLOCK_SIZE = 512\n",
"dataset = prepare_clm_dataset(user_sequences, builder, hf_tokenizer, block_size=BLOCK_SIZE)\n",
"print(f'Packed: {len(dataset):,} blocks x {BLOCK_SIZE} = {len(dataset)*BLOCK_SIZE:,} training tokens')"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"print(f'Sample block decoded (first 60 tokens):')\n",
"print(hf_tokenizer.decode(dataset[0]['input_ids'][:60]))\n",
"\n",
"all_ids = [i for row in dataset for i in row['input_ids']]\n",
"counts = Counter(all_ids)\n",
"print(f'\\nTotal tokens: {len(all_ids):,}, Unique: {len(counts)}/{hf_tokenizer.vocab_size}, UNK: {counts.get(unk_id,0)} ({counts.get(unk_id,0)/len(all_ids)*100:.2f}%)')\n",
"print(f'\\nTop 20 tokens:')\n",
"for tid, count in counts.most_common(20):\n",
" print(f' {tid:5d} {count:8,} ({count/len(all_ids)*100:5.1f}%) {hf_tokenizer.decode([tid]).strip() or \"(space)\"}')"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Step 6 β Pre-Train 24M DomainTransformer\n",
"\n",
"Architecture:\n",
"- GPT-style causal decoder, NoPE (no positional encoding)\n",
"- 24M preset: d=512, 6 layers, 8 heads, FFN=2048\n",
"- Cosine LR schedule with warmup, AdamW\n",
"- CLM objective (next token prediction)\n",
"- wandb logging for persistent monitoring"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"config = DomainTransformerConfig.from_preset('24m', vocab_size=hf_tokenizer.vocab_size)\n",
"model = DomainTransformerForCausalLM(config)\n",
"n_params = sum(p.numel() for p in model.parameters())\n",
"print(f'Model: {n_params:,} params | d={config.hidden_size}, L={config.num_hidden_layers}, H={config.num_attention_heads}')"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"%%time\n",
"USE_GPU = torch.cuda.is_available()\n",
"\n",
"trainer = pretrain_domain_model(\n",
" model=model,\n",
" tokenizer=hf_tokenizer,\n",
" train_dataset=dataset,\n",
" output_dir='./finance_pretrain_checkpoints',\n",
" hub_model_id='rtferraz/finance-domain-24m',\n",
" num_epochs=3 if USE_GPU else 1,\n",
" per_device_batch_size=32 if USE_GPU else 4,\n",
" gradient_accumulation_steps=4 if USE_GPU else 1,\n",
" learning_rate=3e-4,\n",
" warmup_steps=200 if USE_GPU else 10,\n",
" logging_steps=50 if USE_GPU else 10,\n",
" save_steps=1000 if USE_GPU else 999999,\n",
" bf16=USE_GPU,\n",
" report_to='wandb',\n",
" run_name='finance-pretrain-24m-3ep',\n",
" seed=42,\n",
")"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Step 7 β Inspect Training Results"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"losses = [h['loss'] for h in trainer.state.log_history if 'loss' in h]\n",
"print(f'Steps: {trainer.state.global_step:,}')\n",
"print(f'Loss: {losses[0]:.4f} -> {losses[-1]:.4f} ({(1-losses[-1]/losses[0])*100:.1f}% reduction)')\n",
"print(f'Min loss: {min(losses):.4f}')\n",
"\n",
"fig, ax = plt.subplots(figsize=(10, 5))\n",
"ax.plot(losses, linewidth=0.5, alpha=0.5, label='Per-step')\n",
"window = max(len(losses) // 50, 1)\n",
"if len(losses) > window:\n",
" ax.plot(pd.Series(losses).rolling(window=window, min_periods=1).mean(), linewidth=2, color='red', label=f'Smoothed (w={window})')\n",
"ax.set_xlabel('Step'); ax.set_ylabel('Loss'); ax.set_title('Pre-Training Loss Curve')\n",
"ax.legend(); ax.grid(True, alpha=0.3); plt.tight_layout(); plt.show()"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"model.eval()\n",
"device = 'cuda' if torch.cuda.is_available() else 'cpu'\n",
"model = model.to(device)\n",
"\n",
"test_ids = hf_tokenizer(' '.join(builder.tokenize_sequence(user_sequences[0][:3])), return_tensors='pt', add_special_tokens=False)['input_ids'].to(device)\n",
"with torch.no_grad():\n",
" top5 = torch.topk(model(input_ids=test_ids).logits[0, -1, :], 5)\n",
"\n",
"print('Last 5 input tokens:')\n",
"for tid in test_ids[0, -5:]: print(f\" {tid.item():5d} -> '{hf_tokenizer.decode([tid.item()])}'\")\n",
"print('\\nTop-5 next token predictions:')\n",
"for score, tid in zip(top5.values, top5.indices): print(f\" {tid.item():5d} -> '{hf_tokenizer.decode([tid.item()])}' (score={score.item():.3f})\")"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"# t-SNE user embeddings colored by fraud label\n",
"n_sample = min(200, len(user_sequences))\n",
"embeddings, labels_sample = [], []\n",
"for i in range(n_sample):\n",
" enc = hf_tokenizer(' '.join(builder.tokenize_sequence(user_sequences[i][:50])),\n",
" return_tensors='pt', add_special_tokens=False, max_length=256, truncation=True, padding='max_length')\n",
" with torch.no_grad():\n",
" embeddings.append(model.get_user_embedding(enc['input_ids'].to(device), enc['attention_mask'].to(device)).cpu().numpy().flatten())\n",
" labels_sample.append(user_fraud_labels[i])\n",
"\n",
"embeddings = np.array(embeddings); labels_sample = np.array(labels_sample)\n",
"print(f'Embeddings: {embeddings.shape}, Fraud: {labels_sample.sum()}/{len(labels_sample)}')\n",
"\n",
"if len(embeddings) >= 20:\n",
" from sklearn.manifold import TSNE\n",
" coords = TSNE(n_components=2, random_state=42, perplexity=min(30, len(embeddings)-1)).fit_transform(embeddings)\n",
" fig, ax = plt.subplots(figsize=(8, 6))\n",
" for label, color, name in [(0, 'tab:green', 'Normal'), (1, 'tab:red', 'Fraud')]:\n",
" mask = labels_sample == label\n",
" ax.scatter(coords[mask, 0], coords[mask, 1], c=color, label=name, alpha=0.6, edgecolors='black', linewidth=0.3, s=30)\n",
" ax.set_title('User Embeddings (t-SNE) β Pre-trained DomainTransformer'); ax.legend()\n",
" plt.tight_layout(); plt.show()"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Save Artifacts"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"hf_tokenizer.save_pretrained('./finance_tokenizer')\n",
"builder.save('./finance_tokenizer')\n",
"model.save_pretrained('./finance_pretrain_checkpoints/final')\n",
"\n",
"with open('./finance_artifacts.pkl', 'wb') as f:\n",
" pickle.dump({'user_sequences': user_sequences, 'user_ids': user_ids, 'user_fraud_labels': user_fraud_labels}, f)\n",
"\n",
"print('Saved: ./finance_tokenizer/, ./finance_pretrain_checkpoints/final/, ./finance_artifacts.pkl')"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"wandb.finish() # close wandb run cleanly"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Summary\n",
"\n",
"| Metric | Value |\n",
"|--------|-------|\n",
"| Dataset | Nigerian Financial Transactions (5M) |\n",
"| Users (5+ events) | *see output above* |\n",
"| Training tokens | *see output above* |\n",
"| Model | DomainTransformer 24M (NoPE, GPT-style) |\n",
"| Final loss | *see output above* |\n",
"| UNK rate | *see output above* |\n",
"\n",
"**Next:** `02_finance_finetune.ipynb` β Fine-tune for fraud detection with JointFusionModel, compare vs LightGBM."
]
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 3",
"language": "python",
"name": "python3"
},
"language_info": {
"name": "python",
"version": "3.12.0"
}
},
"nbformat": 4,
"nbformat_minor": 4
}
|