Spaces:
Sleeping
Sleeping
Niharmahesh
commited on
Update app.py
Browse files
app.py
CHANGED
@@ -13,8 +13,8 @@ with open('hard_voting_classifier.pkl', 'rb') as file:
|
|
13 |
hard_voting_model = pickle.load(file)
|
14 |
with open('soft_voting_classifier.pkl', 'rb') as file:
|
15 |
soft_voting_model = pickle.load(file)
|
16 |
-
|
17 |
-
|
18 |
|
19 |
models = {
|
20 |
'Random Forest': random_forest_model,
|
|
|
13 |
hard_voting_model = pickle.load(file)
|
14 |
with open('soft_voting_classifier.pkl', 'rb') as file:
|
15 |
soft_voting_model = pickle.load(file)
|
16 |
+
label_classes = np.load('label_classes.npy', allow_pickle=True)
|
17 |
+
|
18 |
|
19 |
models = {
|
20 |
'Random Forest': random_forest_model,
|