Update app.py
Browse files
app.py
CHANGED
@@ -101,7 +101,7 @@ user_input = np.array([age, gender, urea, cr, hb, chol, tg, hdl, vldl,
|
|
101 |
|
102 |
# import dataset
|
103 |
def get_dataset():
|
104 |
-
data = pd.read_csv('
|
105 |
# Transforming class into numerical format
|
106 |
data['CLASS'] = data['CLASS'].apply(lambda x: 0 if x == 'N' else 1)
|
107 |
|
|
|
101 |
|
102 |
# import dataset
|
103 |
def get_dataset():
|
104 |
+
data = pd.read_csv('updated_diabetes.csv')
|
105 |
# Transforming class into numerical format
|
106 |
data['CLASS'] = data['CLASS'].apply(lambda x: 0 if x == 'N' else 1)
|
107 |
|