EpiphanyTech commited on
Commit
f84e21a
·
verified ·
1 Parent(s): 9e9e6a9

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +40 -5
README.md CHANGED
@@ -18,14 +18,17 @@ tags:
18
  pretty_name: SynSEPA — Synthetic SEPA Instant Payment Fraud Dataset
19
 
20
  configs:
21
- - config_name: default
22
  data_files:
23
- - split: transactions
24
  path: data/synsep_full_dataset.csv
25
- - split: accounts
 
 
26
  path: data/accounts.csv
27
 
28
  dataset_info:
 
29
  description: >
30
  SynSEPA is a synthetic SEPA Instant Credit Transfer dataset containing 1.84M
31
  transactions across 10,000 accounts, with 4 APP fraud typologies injected
@@ -68,9 +71,41 @@ dataset_info:
68
  - name: fraud_type
69
  dtype: string
70
  splits:
71
- - name: transactions
72
  num_examples: 1839560
73
- - name: accounts
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
74
  num_examples: 10000
75
  ---
76
 
 
18
  pretty_name: SynSEPA — Synthetic SEPA Instant Payment Fraud Dataset
19
 
20
  configs:
21
+ - config_name: transactions
22
  data_files:
23
+ - split: train
24
  path: data/synsep_full_dataset.csv
25
+ - config_name: accounts
26
+ data_files:
27
+ - split: train
28
  path: data/accounts.csv
29
 
30
  dataset_info:
31
+ - config_name: transactions
32
  description: >
33
  SynSEPA is a synthetic SEPA Instant Credit Transfer dataset containing 1.84M
34
  transactions across 10,000 accounts, with 4 APP fraud typologies injected
 
71
  - name: fraud_type
72
  dtype: string
73
  splits:
74
+ - name: train
75
  num_examples: 1839560
76
+ - config_name: accounts
77
+ description: >
78
+ Per-account metadata for the 10,000 synthetic SynSEPA accounts — persona,
79
+ home country, behavioural parameters, and known-beneficiary lists.
80
+ features:
81
+ - name: account_id
82
+ dtype: string
83
+ - name: persona
84
+ dtype: string
85
+ - name: description
86
+ dtype: string
87
+ - name: home_country
88
+ dtype: string
89
+ - name: sender_iban
90
+ dtype: string
91
+ - name: txn_per_month_min
92
+ dtype: int64
93
+ - name: txn_per_month_max
94
+ dtype: int64
95
+ - name: typical_amount
96
+ dtype: float64
97
+ - name: foreign_txn_prob
98
+ dtype: float64
99
+ - name: weekend_factor
100
+ dtype: float64
101
+ - name: fraud_target_types
102
+ dtype: string
103
+ - name: known_beneficiaries
104
+ dtype: string
105
+ - name: known_beneficiary_count
106
+ dtype: int64
107
+ splits:
108
+ - name: train
109
  num_examples: 10000
110
  ---
111