mikeion commited on
Commit
2af4b1d
·
1 Parent(s): e3ceee1

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -0
app.py CHANGED
@@ -131,6 +131,8 @@ class Chatbot():
131
  d = embeddings.shape[1]
132
  # Use the L2 distance metric
133
  index = faiss.IndexFlatL2(d)
 
 
134
  index.add(embeddings)
135
 
136
 
 
131
  d = embeddings.shape[1]
132
  # Use the L2 distance metric
133
  index = faiss.IndexFlatL2(d)
134
+ print("Embeddings shape:", embeddings.shape)
135
+ print("Embeddings data type:", embeddings.dtype)")
136
  index.add(embeddings)
137
 
138