Spaces:
Runtime error
Runtime error
Roland Szabo
commited on
Commit
·
5f40b5b
1
Parent(s):
c1d15c7
Logging
Browse files
app.py
CHANGED
@@ -130,6 +130,7 @@ def get_all_embeddings(greek_words):
|
|
130 |
if len(words) <= idx - 1:
|
131 |
continue
|
132 |
ew = words[idx-1].strip(",.!?;:()\"'-")
|
|
|
133 |
emb = get_embedding(text, ew)
|
134 |
embeddings.append((emb, f"{verse} {text}", gw, book))
|
135 |
return embeddings
|
|
|
130 |
if len(words) <= idx - 1:
|
131 |
continue
|
132 |
ew = words[idx-1].strip(",.!?;:()\"'-")
|
133 |
+
print(gw, ew)
|
134 |
emb = get_embedding(text, ew)
|
135 |
embeddings.append((emb, f"{verse} {text}", gw, book))
|
136 |
return embeddings
|