Update app.py
Browse files
app.py
CHANGED
@@ -4,7 +4,7 @@ import pandas as pd
|
|
4 |
from ucimlrepo import fetch_ucirepo
|
5 |
|
6 |
# Load the trained model
|
7 |
-
model = joblib.load("
|
8 |
|
9 |
# Define feature columns
|
10 |
FEATURE_COLUMNS = ['radius1', 'texture1', 'perimeter1', 'area1', 'smoothness1',
|
|
|
4 |
from ucimlrepo import fetch_ucirepo
|
5 |
|
6 |
# Load the trained model
|
7 |
+
model = joblib.load("logistic_model.pkl")
|
8 |
|
9 |
# Define feature columns
|
10 |
FEATURE_COLUMNS = ['radius1', 'texture1', 'perimeter1', 'area1', 'smoothness1',
|