merveenoyan / smol-vision

Recipes for shrinking, optimizing, customizing cutting edge vision models. 💜
Apache License 2.0
860 stars 80 forks source link

Wondering: Conflicting Data #10

Closed vasnt closed 2 months ago

vasnt commented 2 months ago

if requested information is differing in multiple pages, can it successfully deduce which one is correct?

merveenoyan commented 2 months ago

@vasnt if you are referring to RAG example, you can return multiple documents by setting e.g. topk=3 and return relevant ones, and feed multiple documents to the LLM to decide in the end. does this answer your question?

vasnt commented 2 months ago

Thanks yes exactly.