Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -186,32 +186,18 @@ SynSEPA generates realistic SEPA payment sequences with:
|
|
| 186 |
|
| 187 |
---
|
| 188 |
|
| 189 |
-
## File Structure
|
| 190 |
-
|
| 191 |
-
```
|
| 192 |
-
synsep-dataset/
|
| 193 |
-
├── data/
|
| 194 |
-
│ ├── synsep_full_dataset.csv ← Main dataset (1.84M transactions, ~298 MB)
|
| 195 |
-
│ └── accounts.csv ← Account metadata (10,000 accounts, ~3.9 MB)
|
| 196 |
-
├── code/
|
| 197 |
-
│ ├── generate/ ← Scripts to regenerate the dataset from scratch
|
| 198 |
-
│ └── examples/
|
| 199 |
-
│ └── sample_baseline.py ← Quick start: Isolation Forest baseline
|
| 200 |
-
├── README.md ← This file
|
| 201 |
-
└── dataset-metadata.json ← Kaggle dataset metadata
|
| 202 |
-
```
|
| 203 |
-
|
| 204 |
-
---
|
| 205 |
-
|
| 206 |
## Quick Start
|
| 207 |
|
| 208 |
-
```
|
| 209 |
-
|
| 210 |
-
|
|
|
|
|
|
|
| 211 |
```
|
| 212 |
|
| 213 |
-
|
| 214 |
-
and
|
|
|
|
| 215 |
|
| 216 |
---
|
| 217 |
|
|
|
|
| 186 |
|
| 187 |
---
|
| 188 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 189 |
## Quick Start
|
| 190 |
|
| 191 |
+
```python
|
| 192 |
+
from datasets import load_dataset
|
| 193 |
+
|
| 194 |
+
transactions = load_dataset("EpiphanyTech/SynSEPA", "transactions")
|
| 195 |
+
accounts = load_dataset("EpiphanyTech/SynSEPA", "accounts")
|
| 196 |
```
|
| 197 |
|
| 198 |
+
An Isolation Forest baseline (AUROC, PR-AUC, classification report at 1% FPR)
|
| 199 |
+
and the full data-generation pipeline are available in the
|
| 200 |
+
[GitHub repo](https://github.com/epiphanytech/SynSEPA).
|
| 201 |
|
| 202 |
---
|
| 203 |
|