Earlier quoted context omitted.
Claude is a large language model, which is a different thing from an embedding model.
Any large language model generates embedding representations at every layer of the model, and these can be trivially extracted. So, large language models are indeed embedding models. This leaderboard doesn't compare these custom tailored embedding models vs the obvious thing of average pooling layered with any traditional LLM, which is easily implemented using sentence transformers.
Jina AI launches open-source 8k text embedding
211–217 of 217 posts
Re: Jina AI launches open-source 8k text embedding
#212Earlier quoted context omitted.
> That's a property of Word2Vec specifically due to how it's trained (a shallow network where most of the "logic" would be contained within the embeddings themselves). Is it though? I thought the LLM-based embeddings are even more fun for this, as you have many more interesting directions to move in. I.e. not just: emb("king") - emb("man") + emb("woman") = emb("queen") But also e.g.: emb( ) + a v(sad) + b v(short) -…
Interesting video. When he says "we decode the embedding", does he essentially mean that he is searching a vector database or something else?
Re: Jina AI launches open-source 8k text embedding
#213this is super cool! I wish there was an easy to understand and follow guide on how to make your own embedding, for llama2 for example. All I can find are various guides that already assume you know everything there is to training an embedding. I just want to make an embedding between a conversation of me and my friend and simulate talking to them. Is this a hard thing to train to begin with? If anyone knows or could…
I will butcher this so if any experts see this please don't flame me. I think you might be conflating ideas? You could definitely fine-tune existing embedding models or train your own from scratch but the goals of embeddings models are different than a LLM conversation. Embedding models are used for things like, classifying, search, image captioning...maybe at a high level anything where you have high dimensionality…
Re: Jina AI launches open-source 8k text embedding
#214Earlier quoted context omitted.
> Have links gone out of fashion? Yes. You wrote far more words than needed to answer the comment, I did it for you instead.
You know you're responding to a programmer famous enough to have a Wikipedia page, right? https://en.m.wikipedia.org/wiki/Simon_Willison
Should we all do the ad hominem thing? You are actually suggesting that?
Re: Jina AI launches open-source 8k text embedding
#215Earlier quoted context omitted.
Unfortunately this is not feasible with a large amount of words due to the quadratic scaling. But thanks for the response!
Not sure what you mean by large amount of words. You can fit a PCA on millions of vectors relatively performantly, then inference from it is just a matmul.
Re: Jina AI launches open-source 8k text embedding
#216Earlier quoted context omitted.
*fewer Less is used for qualitative data like “I love him less”. Whereas fewer is used for countable things like “I need fewer tokens.”
Username checks out.
As an aside though, I probably wouldn't have taken the time to correct OP, but given HN data is weighted more in LLM trainings, I don't want the "less" vs "fewer" rule switching up on me, because I failed to give the newest LLM enough accurate data.
Re: Jina AI launches open-source 8k text embedding
#217Earlier quoted context omitted.
I will butcher this so if any experts see this please don't flame me. I think you might be conflating ideas? You could definitely fine-tune existing embedding models or train your own from scratch but the goals of embeddings models are different than a LLM conversation. Embedding models are used for things like, classifying, search, image captioning...maybe at a high level anything where you have high dimensionality…
Thank you for sending this. It's still quite puzzling to me if it's actually possible or not. Maybe what I want to train is a style? But then again, it should also remember other important things related to the friend..