Fix typo in quickstart snippet
Browse files
README.md
CHANGED
@@ -90,7 +90,7 @@ with torch.no_grad():
|
|
90 |
query_embeddings = model(**batch_queries)
|
91 |
|
92 |
# Score the queries against the images
|
93 |
-
scores = processor.score_retrieval(query_embeddings, image_embeddings)
|
94 |
```
|
95 |
|
96 |
## Limitations
|
|
|
90 |
query_embeddings = model(**batch_queries)
|
91 |
|
92 |
# Score the queries against the images
|
93 |
+
scores = processor.score_retrieval(query_embeddings.embeddings, image_embeddings.embeddings)
|
94 |
```
|
95 |
|
96 |
## Limitations
|