Update README.md
Browse files
README.md
CHANGED
|
@@ -1,44 +1,38 @@
|
|
| 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 |
-
"type": "true_positive_rate",
|
| 40 |
-
"value": "<fairlearn value>",
|
| 41 |
-
"note": "The proportion of actual positive outcomes that are correctly identified for each group."
|
| 42 |
-
}
|
| 43 |
-
]
|
| 44 |
-
}
|
|
|
|
| 1 |
+
---
|
| 2 |
+
tags:
|
| 3 |
+
- tabular-classification
|
| 4 |
+
- credit-scoring
|
| 5 |
+
- fairness
|
| 6 |
+
task:
|
| 7 |
+
type: tabular-classification
|
| 8 |
+
name: Creditworthiness Prediction
|
| 9 |
+
metrics:
|
| 10 |
+
- name: Accuracy
|
| 11 |
+
type: accuracy
|
| 12 |
+
value: "<value from evaluate_model>"
|
| 13 |
+
note: The proportion of correctly classified instances.
|
| 14 |
+
- name: Precision
|
| 15 |
+
type: precision
|
| 16 |
+
value: "<value from evaluate_model>"
|
| 17 |
+
note: The proportion of positive identifications that were actually correct.
|
| 18 |
+
- name: Recall
|
| 19 |
+
type: recall
|
| 20 |
+
value: "<value from evaluate_model>"
|
| 21 |
+
note: The proportion of actual positive cases that were identified correctly.
|
| 22 |
+
- name: F1 Score
|
| 23 |
+
type: f1
|
| 24 |
+
value: "<value from evaluate_model>"
|
| 25 |
+
note: The harmonic mean of Precision and Recall.
|
| 26 |
+
- name: Selection Rate
|
| 27 |
+
type: selection_rate
|
| 28 |
+
value: "<fairlearn value>"
|
| 29 |
+
note: The proportion of predictions that are positive, for each group.
|
| 30 |
+
- name: Equal Opportunity
|
| 31 |
+
type: true_positive_rate
|
| 32 |
+
value: "<fairlearn value>"
|
| 33 |
+
note: The proportion of actual positive outcomes that are correctly identified for each group.
|
| 34 |
+
---
|
| 35 |
+
|
| 36 |
+
# Creditworthiness Prediction
|
| 37 |
+
|
| 38 |
+
This model predicts whether an applicant is creditworthy based on tabular financial and demographic features.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|