mikeion commited on
Commit
7a0b900
·
1 Parent(s): a17bdb1

Update app.py

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