AyushMann29 commited on
Commit
9522050
·
verified ·
1 Parent(s): 7d3b013

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +38 -44
README.md CHANGED
@@ -1,44 +1,38 @@
1
- {
2
- "task": {
3
- "type": "tabular-classification",
4
- "name": "Creditworthiness Prediction"
5
- },
6
- "metrics": [
7
- {
8
- "name": "Accuracy",
9
- "type": "accuracy_score",
10
- "value": "<value from evaluate_model>",
11
- "note": "The proportion of correctly classified instances."
12
- },
13
- {
14
- "name": "Precision",
15
- "type": "precision_score",
16
- "value": "<value from evaluate_model>",
17
- "note": "The proportion of positive identifications that were actually correct."
18
- },
19
- {
20
- "name": "Recall",
21
- "type": "recall_score",
22
- "value": "<value from evaluate_model>",
23
- "note": "The proportion of actual positive cases that were identified correctly."
24
- },
25
- {
26
- "name": "F1 Score",
27
- "type": "f1_score",
28
- "value": "<value from evaluate_model>",
29
- "note": "The harmonic mean of Precision and Recall."
30
- },
31
- {
32
- "name": "Selection Rate",
33
- "type": "selection_rate",
34
- "value": "<fairlearn value>",
35
- "note": "The proportion of predictions that are positive, for each group."
36
- },
37
- {
38
- "name": "Equal Opportunity",
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.