Fix typo in the params of `score_retrieval`
#2
by
dulacp
- opened
README.md
CHANGED
@@ -88,7 +88,7 @@ with torch.no_grad():
|
|
88 |
query_embeddings = model(**batch_queries)
|
89 |
|
90 |
# Score the queries against the images
|
91 |
-
scores = processor.score_retrieval(query_embeddings, image_embeddings)
|
92 |
```
|
93 |
|
94 |
## Limitations
|
|
|
88 |
query_embeddings = model(**batch_queries)
|
89 |
|
90 |
# Score the queries against the images
|
91 |
+
scores = processor.score_retrieval(query_embeddings.embeddings, image_embeddings.embeddings)
|
92 |
```
|
93 |
|
94 |
## Limitations
|