Skip to content

Commit 289b22c

Browse files
authored
Update app.py
1 parent 9ba551a commit 289b22c

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

app.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,9 @@
55
from keras.models import load_model
66
from tensorflow.keras.preprocessing.sequence import pad_sequences
77
import pickle
8-
import os
9-
print("Current working directory:", os.getcwd())
108

119
# Load the model, tokenizer, and label encoder
12-
model = load_model('/workspaces/OptimalYou-Chat/chatbot_model.h5')
10+
model = load_model('chatbot_model.h5')
1311

1412
with open('tokenizer.pickle', 'rb') as handle:
1513
tokenizer = pickle.load(handle)

0 commit comments

Comments
 (0)