ninarg commited on
Commit
cda1e69
·
verified ·
1 Parent(s): 3e6beff

v5.9.0 fleet alignment: standardize README structure (frontmatter, sections, citation)

Browse files
Files changed (1) hide show
  1. README.md +79 -20
README.md CHANGED
@@ -2,6 +2,10 @@
2
  license: apache-2.0
3
  task_categories:
4
  - tabular-classification
 
 
 
 
5
  tags:
6
  - synthetic
7
  - financial-data
@@ -9,37 +13,92 @@ tags:
9
  - aml
10
  - banking
11
  - fraud-detection
12
- size_categories:
13
- - 100K<n<1M
14
  ---
15
 
16
- # VynFi AML: 748K Banking Transactions with AML Labels
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
17
 
18
- 748,869 synthetic banking transactions. Financial services sector, 5 companies, 6 monthly periods. 59 columns including 14 pre-computed velocity features.
19
 
20
- - 411 suspicious transactions (0.05%)
21
- - 37,419 false positives (5% injection rate)
22
- - 11 transaction channels (ACH, ATM, card, cash, check, mobile, online, P2P, SWIFT, wire)
23
- - Counterparty details, velocity windows (1h/24h/7d/30d), amount z-scores
 
24
 
25
- The suspicious rate is low by design. Production AML systems see comparable rates. The false-positive injection provides realistic noise for threshold calibration.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
26
 
27
  ## Limitations
28
 
29
- - Labels are generated, not from real SARs. Typology patterns are rule-based, not learned from case data.
30
- - Velocity features are computed per-account over the synthetic timeline. They reflect the generation model's temporal logic, not real transaction behavior.
31
- - The 100K row parameter produced 748K banking transactions due to the engine's expansion factor. This is a property of the generation, not a data error.
 
 
 
 
 
 
 
 
 
 
32
 
33
  ## Citation
34
 
35
  ```bibtex
36
- @dataset{ivertowski_vynfi_aml_2026,
37
- title = {VynFi AML: 748K Banking Transactions with AML Labels},
38
- author = {Michael Ivertowski},
39
- year = {2026},
40
- url = {https://huggingface.co/datasets/VynFi/vynfi-aml-100k},
41
- note = {Generated with VynFi (https://vynfi.com)}
 
 
 
42
  }
43
  ```
44
-
45
- License: Apache 2.0. Entirely synthetic.
 
2
  license: apache-2.0
3
  task_categories:
4
  - tabular-classification
5
+ language:
6
+ - en
7
+ size_categories:
8
+ - 100K<n<1M
9
  tags:
10
  - synthetic
11
  - financial-data
 
13
  - aml
14
  - banking
15
  - fraud-detection
16
+ - velocity-features
 
17
  ---
18
 
19
+ # VynFi AML 748 K Banking Transactions with AML Labels
20
+
21
+ 748 869 synthetic banking transactions with AML/SAR-style labels and
22
+ 14 pre-computed velocity features. Designed for tabular AML
23
+ classification benchmarks, threshold-calibration studies, and
24
+ balance-sheet / counterparty-risk analytics.
25
+
26
+ Generated with **DataSynth** (banking module, KYC/AML typologies) ·
27
+ [GitHub](https://github.com/mivertowski/SyntheticData) ·
28
+ [Companion paper (SSRN)](https://ssrn.com/abstract=6538639).
29
+
30
+ > **Provenance note.** This dataset was last refreshed under
31
+ > DataSynth v5.0. The v5.6 → v5.9 release line ships fixes
32
+ > centred on the journal-entry / accounting-network generators;
33
+ > the banking module producing this dataset was untouched, so the
34
+ > data here is unaffected by those changes and a regeneration is
35
+ > not in scope for the v5.9.0 fleet refresh.
36
+
37
+ ## What's included
38
+
39
+ | Config | Rows | Columns | What it is |
40
+ |---|---|---|---|
41
+ | (default) | 748,869 | 59 | One row per banking transaction with counterparty, channel, amount, FX, velocity-window aggregates, and AML labels (`is_suspicious`, `typology`, `false_positive`). |
42
 
43
+ ## Schema highlights
44
 
45
+ * **Channels (11)** `ACH`, `ATM`, `card`, `cash`, `check`, `mobile`, `online`, `P2P`, `SWIFT`, `wire`, plus an `internal` transfer category.
46
+ * **Counterparty** `counterparty_id`, `counterparty_name`, `counterparty_country`, `counterparty_account_type`.
47
+ * **Velocity windows** 1 h, 24 h, 7 d, 30 d aggregates of incoming + outgoing amounts and counts, plus `amount_zscore_*` and `velocity_zscore_*` features.
48
+ * **AML labels** 411 suspicious transactions (0.05 %), 37 419 false-positives (5 %).
49
+ * **Typologies covered** — structuring / smurfing, layering, mule activity, round-tripping, fraud, market spoofing.
50
 
51
+ ## Quick start
52
+
53
+ ```python
54
+ from datasets import load_dataset
55
+
56
+ txns = load_dataset("VynFi/vynfi-aml-100k", split="train")
57
+ print(txns.features)
58
+
59
+ # Suspicious-only slice
60
+ suspicious = txns.filter(lambda r: r["is_suspicious"])
61
+ ```
62
+
63
+ ## Generation
64
+
65
+ | | |
66
+ |---|---|
67
+ | **DataSynth release** | v5.0 (banking module — unchanged in v5.6–v5.9) |
68
+ | **Industry** | Financial services |
69
+ | **Period** | 6 monthly periods |
70
+ | **Companies** | 5 |
71
+ | **Suspicious rate** | 0.05 % (matches production AML transaction rates) |
72
+ | **False-positive injection** | 5 % (for threshold calibration) |
73
+ | **Reproducibility** | Determined by the embedded ChaCha8 seed; regenerable from a future v5.9-aware banking config (not yet pinned in `configs/examples/hf/`). |
74
 
75
  ## Limitations
76
 
77
+ * Labels are generated, not from real SARs. Typology patterns are
78
+ rule-based, not learned from case data.
79
+ * Velocity features are computed per-account over the synthetic
80
+ timeline. They reflect the generator's temporal model, not real
81
+ transaction behaviour.
82
+ * The "100k" in the dataset name refers to the row-count parameter
83
+ passed to the engine; the banking module's expansion factor
84
+ produces 748 869 rows. This is a property of the generation
85
+ model, not a data error.
86
+
87
+ ## License
88
+
89
+ Apache-2.0.
90
 
91
  ## Citation
92
 
93
  ```bibtex
94
+ @misc{ivertowski2026datasynth,
95
+ author = {Ivertowski, Michael},
96
+ title = {{DataSynth}: Reference Knowledge Graphs for Enterprise
97
+ Audit Analytics through Synthetic Data Generation
98
+ with Provable Statistical Properties},
99
+ year = {2026},
100
+ month = {April},
101
+ howpublished = {SSRN Working Paper},
102
+ url = {https://ssrn.com/abstract=6538639}
103
  }
104
  ```