-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRepository Structure.txt
More file actions
48 lines (48 loc) · 1.41 KB
/
Copy pathRepository Structure.txt
File metadata and controls
48 lines (48 loc) · 1.41 KB
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
cpbm/
├── README.md
├── LICENSE
├── setup.py
├── requirements.txt
├── .github/
│ └── workflows/
│ └── ci.yml
├── cpbm/
│ __init__.py
│ ├── core/
│ │ ├── __init__.py
│ │ ├── signature.py
│ │ ├── diffusion.py
│ │ ├── stratum.py
│ │ └── npi.py
│ ├── models/
│ │ ├── __init__.py
│ │ ├── xgb_layer.py
│ │ ├── lstm_layer.py
│ │ ├── gat_layer.py
│ │ └── ensemble.py
│ ├── data/
│ │ ├── __init__.py
│ │ ├── schema.sql
│ │ ├── loader.py
│ │ └── synthetic.py
│ ├── scaling/
│ │ ├── __init__.py
│ │ └── aggregator.py
│ ├── evaluation/
│ │ ├── __init__.py
│ │ └── metrics.py
│ └── viz/
│ ├── __init__.py
│ └── plots.py
├── experiments/
│ ├── 01_synthetic_baseline.py
│ ├── 02_real_data_fmcg.py
│ └── 03_scaling_demo.py
├── notebooks/
│ ├── 01_signature_exploration.ipynb
│ └── 02_full_pipeline.ipynb
└── tests/
├── test_signature.py
├── test_diffusion.py
├── test_ensemble.py
└── test_scaling.py