Image Feature Extraction
Transformers
Safetensors
ColPali
English
pretraining
Inference Endpoints
tonywu71 dulacp commited on
Commit
e7af6dc
·
verified ·
1 Parent(s): 8c0b4f6

Fix typo in the params of `score_retrieval` (#2)

Browse files

- Fix typo in the params of `score_retrieval` (c4420f7a24cf2984b4bc019b229f4eaa9c835488)


Co-authored-by: Pierre Dulac <[email protected]>

Files changed (1) hide show
  1. README.md +1 -1
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