Support for quantized embedding models #8779
Closed
d1pankarmedhi
started this conversation in
General
Replies: 3 comments 2 replies
|
Hello! I'm not sure that Sentence Transformers supports embedding models quantized with I did a quick search and did not find anything. Could you share some pointers/resources? |
0 replies
|
Actually, I was trying to load a from haystack.components.embedders import SentenceTransformersDocumentEmbedder
doc_embedder = SentenceTransformersDocumentEmbedder(model="<path-to-quantized-model>")
doc_embedder.warm_up()So, I was just wondering if there's any other method, implemented in haystack, to load quantized models directly. |
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Can we use BitsAndBytes quantized encoder models in the
SentenceTransformersDocumentEmbedder? I went through the code but didn't find any implementation for handling quantized models.All reactions