Niharmahesh commited on
Commit
d08637a
·
verified ·
1 Parent(s): 3c0e7f6

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
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
- with open('label_encoder.pkl', 'rb') as file:
17
- label_encoder = pickle.load(file)
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,