We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9ba551a commit 289b22cCopy full SHA for 289b22c
app.py
@@ -5,11 +5,9 @@
5
from keras.models import load_model
6
from tensorflow.keras.preprocessing.sequence import pad_sequences
7
import pickle
8
-import os
9
-print("Current working directory:", os.getcwd())
10
11
# Load the model, tokenizer, and label encoder
12
-model = load_model('/workspaces/OptimalYou-Chat/chatbot_model.h5')
+model = load_model('chatbot_model.h5')
13
14
with open('tokenizer.pickle', 'rb') as handle:
15
tokenizer = pickle.load(handle)
0 commit comments