brendabor commited on
Commit
dac737b
1 Parent(s): c3d7b84

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -7,7 +7,7 @@ import numpy as np
7
 
8
  # Load your models
9
  emotion_model = load_model('lstm_model.h5')
10
- recommender_model = joblib.load('knn_model.npy') # Assuming it's a .pkl file
11
 
12
  # Load the tokenizer (if used during training)
13
  # tokenizer = joblib.load('tokenizer.pkl') # Update with actual file name
 
7
 
8
  # Load your models
9
  emotion_model = load_model('lstm_model.h5')
10
+ recommender_model = np.load('knn_model.npy')
11
 
12
  # Load the tokenizer (if used during training)
13
  # tokenizer = joblib.load('tokenizer.pkl') # Update with actual file name