Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -6,7 +6,7 @@ from sklearn.model_selection import train_test_split
|
|
6 |
from sklearn.neighbors import KNeighborsClassifier
|
7 |
import gradio as gr
|
8 |
# Load data
|
9 |
-
nexus_bank = pd.read_csv('
|
10 |
# Preprocessing
|
11 |
X = nexus_bank[['salary', 'dependents']]
|
12 |
y = nexus_bank['defaulter']
|
|
|
6 |
from sklearn.neighbors import KNeighborsClassifier
|
7 |
import gradio as gr
|
8 |
# Load data
|
9 |
+
nexus_bank = pd.read_csv('nexus_bank_dataa.csv')
|
10 |
# Preprocessing
|
11 |
X = nexus_bank[['salary', 'dependents']]
|
12 |
y = nexus_bank['defaulter']
|