Upload 3 files
Browse files- README.md +9 -3
- config.json +1 -0
- loan_decision_tree.joblib +3 -0
README.md
CHANGED
|
@@ -1,3 +1,9 @@
|
|
| 1 |
-
|
| 2 |
-
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Loan Approval Classifier
|
| 2 |
+
This is a Decision Tree classifier trained on the bankloan dataset to predict personal loan approval.
|
| 3 |
+
|
| 4 |
+
## How to use
|
| 5 |
+
```python
|
| 6 |
+
from joblib import load
|
| 7 |
+
model = load('loan_decision_tree.joblib')
|
| 8 |
+
y_pred = model.predict(X)
|
| 9 |
+
```
|
config.json
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
{"model_type": "sklearn", "task": "tabular-classification"}
|
loan_decision_tree.joblib
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4e8e40dcb7ac4859f8f5378bf9744ecdbf8f6a1303b2292c95990862d0fd484f
|
| 3 |
+
size 10601
|