Spaces:
Sleeping
Sleeping
Upload config.yaml
Browse files- config/config.yaml +26 -0
config/config.yaml
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
data:
|
| 2 |
+
customers_path: data/raw/customers.csv
|
| 3 |
+
loans_path: data/raw/loans.csv
|
| 4 |
+
bureau_path: data/raw/bureau_data.csv
|
| 5 |
+
processed_path: data/processed/processed.csv
|
| 6 |
+
target: default
|
| 7 |
+
|
| 8 |
+
training:
|
| 9 |
+
test_size: 0.25
|
| 10 |
+
random_state: 42
|
| 11 |
+
|
| 12 |
+
model:
|
| 13 |
+
params:
|
| 14 |
+
penalty: "l2"
|
| 15 |
+
C: 1.0
|
| 16 |
+
solver: "liblinear"
|
| 17 |
+
max_iter: 1000
|
| 18 |
+
n_jobs: 1
|
| 19 |
+
|
| 20 |
+
|
| 21 |
+
artifacts:
|
| 22 |
+
model_dir: models/
|
| 23 |
+
metrics_path: models/metrics.json
|
| 24 |
+
|
| 25 |
+
drift:
|
| 26 |
+
report_path: models/data_drift_report.html
|