Search image with Hybrid method #1028
Replies: 2 comments
|
Hello @thanhtung2693 . Sorry for the late reply. Marqo supports passing a dictionary as a query. See the second example in this doc for details. Specifically, you can use this query to retrieve the docs (please test the weights to get a better recall on your dataset): Please let me know if this works for you. Thanks. |
|
Hello @thanhtung2693, Thanks for starting this discussion! When dealing with AI/LLM integrations, Vector DBs, or agent frameworks, quirks like this can usually be traced back to a few specific moving parts:
If you are still blocked, providing a minimal reproducible snippet or logging the raw request/response payload (scrubbed of secrets) usually helps pinpoint the exact failure layer much faster. Hope this helps point you in the right direction. Let me know if you make any progress! |
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Hello,
My use case is I want to search ecommerce products with image and options. For example my query would be:
https://example.com/product.jpg with Size S, but with the options (with Size S) will make Marqo download the wrong image URL or wrong result.Here is my index settings:
{ "type": "structured", "model": "marqo-fashion-siglip-custom-load", "modelProperties": { "name": "hf-hub:Marqo/marqo-fashionSigLIP", "dimensions": 768, "type": "open_clip", }, "normalizeEmbeddings": True, "allFields": [ {"name": "thumbnail", "type": "image_pointer"}, {"name": "options", "type": "array<text>", "features": ["lexical_search"]}, {"name": "name", "type": "text", "features": ["lexical_search"]}, { "name": "multimodal_image_name", "type": "multimodal_combination", "dependentFields": {"thumbnail": 0.9, "name": 0.1} } ], "tensorFields": ["multimodal_image_name"], }and this is the query:
Thanks.
All reactions