Impressive work. I wonder what would be the best way to use 8k embeddings. It’s a lot of information to keep in a vector, so things like “precision” of the embedding space and its ability to distinguish very similar large documents will be key. Maybe it can be useful for coarse similarity matching, for example to detect plagiarism?
8K is the context length. Their vector dimension size is actual much smaller, which is great for a number of use cases, though maybe not the ones you are thinking about.
Jina AI launches open-source 8k text embedding
11–20 of 217 posts
Re: Jina AI launches open-source 8k text embedding
#12Re: Jina AI launches open-source 8k text embedding
#13Does anyone know what they are using for this comparison and ranking? And where does instruct-xl stand in the mix?
Oh duh, it’s right in the post and instructor-xl is number 9. And so many new participants now!
https://huggingface.co/spaces/mteb/leaderboard
It’s amazing how many new and better ones there are since I last looked a few months ago. Instructor-xl was number 1, now it is number 9, and its size is more than 10x the number 2 ranked!
Things move fast!
Re: Jina AI launches open-source 8k text embedding
#14For those unaware, if 512 tokens of context is sufficient for your use case, there are already many options that outperform text-embedding-ada-002 on common benchmarks:
Re: Jina AI launches open-source 8k text embedding
#15Anyone got links to examples of text embedding?
- University and Universe are similar alphabetically.
- University and College are similar in meaning.
Take embeddings for those three words and `University` will be near `College`, while `Universe` will be further away, because embeddings capture meaning:
UniversityCollegeUniverse
_
With old school search you'd need to handle the special case of treating University and College as similar, but embeddings already handle it.
With embeddings you can do math to find how similar two results are, based on how close their vectors are. The closer the embeddings, the closer the meaning.
Re: Jina AI launches open-source 8k text embedding
#16Re: Jina AI launches open-source 8k text embedding
#17Is there something like oobabooga to easily run this in a click-and-run way? Where I can load up a model, a text, and ask it questions?
I bet you could hack this in.
Re: Jina AI launches open-source 8k text embedding
#18Re: Jina AI launches open-source 8k text embedding
#19Anyone got links to examples of text embedding?
https://platform.openai.com/docs/guides/embeddings/what-are-...
Re: Jina AI launches open-source 8k text embedding
#20Impressive work. I wonder what would be the best way to use 8k embeddings. It’s a lot of information to keep in a vector, so things like “precision” of the embedding space and its ability to distinguish very similar large documents will be key. Maybe it can be useful for coarse similarity matching, for example to detect plagiarism?
8K is the context length. Their vector dimension size is actual much smaller, which is great for a number of use cases, though maybe not the ones you are thinking about.