Spaces:
Runtime error
Runtime error
Commit
·
8fd8222
1
Parent(s):
c48dde4
Update app.py
Browse files
app.py
CHANGED
@@ -54,6 +54,7 @@ def predict(im):
|
|
54 |
values, indices = torch.topk(probabilities, 5)
|
55 |
|
56 |
query = values[0]
|
|
|
57 |
|
58 |
n_results=3
|
59 |
text_embeddings = compute_text_embeddings([query]).detach().numpy()
|
|
|
54 |
values, indices = torch.topk(probabilities, 5)
|
55 |
|
56 |
query = values[0]
|
57 |
+
print(query, values)
|
58 |
|
59 |
n_results=3
|
60 |
text_embeddings = compute_text_embeddings([query]).detach().numpy()
|