EpiphanyTech commited on
Commit
22ca981
·
verified ·
1 Parent(s): 382d9f9

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +8 -22
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
- ```bash
209
- pip install pandas scikit-learn matplotlib numpy
210
- python code/examples/sample_baseline.py
 
 
211
  ```
212
 
213
- This runs an Isolation Forest baseline on the dataset and prints AUROC, PR-AUC,
214
- and a classification report at 1% FPR a useful starting benchmark.
 
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