-
Notifications
You must be signed in to change notification settings - Fork 159
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Consider adding support for embeddings #3462
Comments
Can’t the existing array type be used for that? |
You'd want an array of fixed size, kind of like a mathematical |
Yeah, but it probably could be |
I'm not an expert on LLMs, could you please point me to some information on the data types that they're using? |
At the most basic level, an embedding is just a vector of floats of a fixed length. For example, see here: https://www.pinecone.io/learn/vector-database/ |
float32[N]
, and possiblyfloat16[N]
. The data type is a plain array ofN
floats.The LLMs are in fashion now, so why not add a support for them?
The text was updated successfully, but these errors were encountered: