Kibo1 commited on
Commit
8de248c
·
verified ·
1 Parent(s): 66ac81a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -18,8 +18,8 @@ for i in range(len(df)):
18
  embedding_model = SentenceTransformer('all-MiniLM-L6-v2')
19
  context_embeddings = embedding_model.encode(context_data)
20
 
21
- print(f"Number of contexts: {len(context_data)}")
22
- print(f"Shape of embeddings: {context_embeddings.shape}")
23
 
24
 
25
  import os
 
18
  embedding_model = SentenceTransformer('all-MiniLM-L6-v2')
19
  context_embeddings = embedding_model.encode(context_data)
20
 
21
+ #print(f"Number of contexts: {len(context_data)}")
22
+ #print(f"Shape of embeddings: {context_embeddings.shape}")
23
 
24
 
25
  import os