Earlier quoted context omitted.
It's in the repo: You first create embeddings. What is this? It's an n-dimensional vector space with your tweets 'embedded' in that space. Each word is an n-dimensional vector in this space. The vectorization is supposed to maintain 'semantic distance'. Basically, if two words are very close in meaning or related (by say frequently appearing next to each other in corpus) they should be 'close' in some of those n-dime…
Thank you for this walkthrough, and for citing the code alongside!
You probably shouldn't use OpenAI's embeddings
21–30 of 31 posts
Re: You probably shouldn't use OpenAI's embeddings
#22Could anyone point me towards a relatively beginner-friendly guide to do something like >download all my tweets (about 20k) and build a semantic searcher on top ? How can utilize 3rd party embeddings with OpenAI's LLM API? Am I correct to understand from this article that this is possible?
Re: You probably shouldn't use OpenAI's embeddings
#23It’s fine to use their embeddings for a proof of concept, but since you don’t own it, you probably shouldn’t rely on it because it could go away at any time.
Re: You probably shouldn't use OpenAI's embeddings
#24Re: You probably shouldn't use OpenAI's embeddings
#25It’s fine to use their embeddings for a proof of concept, but since you don’t own it, you probably shouldn’t rely on it because it could go away at any time.
Couldn’t you make that argument against all SaaS?
(Although there is a lot more advantages to just having Office 2021 like the flat fee)
Re: You probably shouldn't use OpenAI's embeddings
#26I've done some quick-and-dirty testing with OpenAI's embedding API + Zilliz Cloud. The 1st gen embeddings leave something to be desired ( https://medium.com/@nils_reimers/openai-gpt-3-text-embedding... ), but the 2nd gen embeddings are actually fairly performant relative to many open source models with MLM loss. I'll have to dig out the notebook that I created for this, but I'll try to post it here once I find it.
Re: You probably shouldn't use OpenAI's embeddings
#27It’s fine to use their embeddings for a proof of concept, but since you don’t own it, you probably shouldn’t rely on it because it could go away at any time.
Couldn’t you make that argument against all SaaS?
Re: You probably shouldn't use OpenAI's embeddings
#28The heat map of availability time, 98.58 (Jan), 99.07 (Feb), and 99.71 (Mar) trends upwards.
Re: You probably shouldn't use OpenAI's embeddings
#29Is someone doing embeddings embeddings mapping? For example, mapping embeddings of Llama to GPT-3? That way you can see how similar the models “understand the world”.
Re: You probably shouldn't use OpenAI's embeddings
#30Is someone doing embeddings embeddings mapping? For example, mapping embeddings of Llama to GPT-3? That way you can see how similar the models “understand the world”.
Isn't this the whole point behind the CLIP architecture?