Spaces:
Sleeping
Sleeping
TrBn17 commited on
Commit ·
413f8c1
1
Parent(s): d020e1b
fix readme
Browse files
README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
| 1 |
---
|
| 2 |
title: CREDIT SCORE
|
| 3 |
-
emoji:
|
| 4 |
colorFrom: blue
|
| 5 |
colorTo: green
|
| 6 |
sdk: gradio
|
|
@@ -10,18 +10,18 @@ pinned: false
|
|
| 10 |
license: apache-2.0
|
| 11 |
---
|
| 12 |
|
| 13 |
-
#
|
| 14 |
|
| 15 |
Hệ thống dự đoán điểm tín dụng sử dụng Machine Learning với RandomForestClassifier.
|
| 16 |
|
| 17 |
-
##
|
| 18 |
|
| 19 |
-
-
|
| 20 |
-
-
|
| 21 |
-
-
|
| 22 |
-
-
|
| 23 |
|
| 24 |
-
##
|
| 25 |
|
| 26 |
### Input Features (7 features):
|
| 27 |
|
|
@@ -35,11 +35,11 @@ Hệ thống dự đoán điểm tín dụng sử dụng Machine Learning với
|
|
| 35 |
|
| 36 |
### Output Classes:
|
| 37 |
|
| 38 |
-
-
|
| 39 |
-
-
|
| 40 |
-
-
|
| 41 |
|
| 42 |
-
##
|
| 43 |
|
| 44 |
```csv
|
| 45 |
Annual_Income,Num_of_Delayed_Payment,Credit_Mix,Outstanding_Debt,Payment_Behaviour,Monthly_Balance,Credit_History_Age_in_months
|
|
@@ -48,21 +48,21 @@ Annual_Income,Num_of_Delayed_Payment,Credit_Mix,Outstanding_Debt,Payment_Behavio
|
|
| 48 |
50000,3,1,15000,1,300,36
|
| 49 |
```
|
| 50 |
|
| 51 |
-
##
|
| 52 |
|
| 53 |
- **Model Type**: RandomForestClassifier
|
| 54 |
- **Features**: 7 input features
|
| 55 |
- **Classes**: 3 output classes
|
| 56 |
- **Top Important Feature**: Outstanding_Debt (24.0%)
|
| 57 |
|
| 58 |
-
##
|
| 59 |
|
| 60 |
```bash
|
| 61 |
pip install -r requirements.txt
|
| 62 |
python app.py
|
| 63 |
```
|
| 64 |
|
| 65 |
-
##
|
| 66 |
|
| 67 |
1. Outstanding_Debt (24.0%)
|
| 68 |
2. Credit_History_Age_in_months (18.5%)
|
|
@@ -74,4 +74,3 @@ python app.py
|
|
| 74 |
|
| 75 |
---
|
| 76 |
|
| 77 |
-
**⚠️ Lưu ý**: Model chỉ mang tính chất tham khảo, không thay thế cho đánh giá tín dụng chuyên nghiệp.
|
|
|
|
| 1 |
---
|
| 2 |
title: CREDIT SCORE
|
| 3 |
+
emoji: 🦊
|
| 4 |
colorFrom: blue
|
| 5 |
colorTo: green
|
| 6 |
sdk: gradio
|
|
|
|
| 10 |
license: apache-2.0
|
| 11 |
---
|
| 12 |
|
| 13 |
+
# Credit Score Prediction System
|
| 14 |
|
| 15 |
Hệ thống dự đoán điểm tín dụng sử dụng Machine Learning với RandomForestClassifier.
|
| 16 |
|
| 17 |
+
## Tính năng
|
| 18 |
|
| 19 |
+
- **Dự đoán đơn lẻ**: Nhập thông tin khách hàng để dự đoán điểm tín dụng
|
| 20 |
+
- **Dự đoán hàng loạt**: Upload file CSV/Excel để dự đoán nhiều khách hàng cùng lúc
|
| 21 |
+
- **Phân tích model**: Xem thông tin về model và độ quan trọng của các features
|
| 22 |
+
- **Giao diện thân thiện**: Sử dụng Gradio với thiết kế đẹp và dễ sử dụng
|
| 23 |
|
| 24 |
+
## Cách sử dụng
|
| 25 |
|
| 26 |
### Input Features (7 features):
|
| 27 |
|
|
|
|
| 35 |
|
| 36 |
### Output Classes:
|
| 37 |
|
| 38 |
+
- **Class 0**: Poor Credit Score (Điểm tín dụng thấp)
|
| 39 |
+
- **Class 1**: Standard Credit Score (Điểm tín dụng trung bình)
|
| 40 |
+
- **Class 2**: Good Credit Score (Điểm tín dụng tốt)
|
| 41 |
|
| 42 |
+
## Format File CSV/Excel
|
| 43 |
|
| 44 |
```csv
|
| 45 |
Annual_Income,Num_of_Delayed_Payment,Credit_Mix,Outstanding_Debt,Payment_Behaviour,Monthly_Balance,Credit_History_Age_in_months
|
|
|
|
| 48 |
50000,3,1,15000,1,300,36
|
| 49 |
```
|
| 50 |
|
| 51 |
+
## Thông tin Model
|
| 52 |
|
| 53 |
- **Model Type**: RandomForestClassifier
|
| 54 |
- **Features**: 7 input features
|
| 55 |
- **Classes**: 3 output classes
|
| 56 |
- **Top Important Feature**: Outstanding_Debt (24.0%)
|
| 57 |
|
| 58 |
+
## Chạy local
|
| 59 |
|
| 60 |
```bash
|
| 61 |
pip install -r requirements.txt
|
| 62 |
python app.py
|
| 63 |
```
|
| 64 |
|
| 65 |
+
## Feature Importance
|
| 66 |
|
| 67 |
1. Outstanding_Debt (24.0%)
|
| 68 |
2. Credit_History_Age_in_months (18.5%)
|
|
|
|
| 74 |
|
| 75 |
---
|
| 76 |
|
|
|