Earlier quoted context omitted.
I covered this in the blog post: no big money involved, I asked to rejoin and without a big paycheck on purpose because to be free to act you should not get too much money, otherwise it's all fake.
But if you wanted to have influence without a big pay check, why not join Valkey? Redis, the company, in your absence has gotten a reputation as a predatory company that has attacked open source projects in other to further those goals. https://arstechnica.com/information-technology/2024/04/redis... https://news.ycombinator.com/item?id=39858144 https://news.ycombinator.com/item?id=42239607
From where I left
21–30 of 472 posts
Re: From where I left
#22Earlier quoted context omitted.
Thank you Rui, my target is: API that can be learned and used under 120 seconds. I don't think more of this is needed, for the basic usage. Then there could be other stuff, but it must be incremental. Easy things must be easy.
Well, the VSIM example I got inside of 10 seconds, so at least for now you're on track :)
VADD key [VALUES | FP32 ] element
VSIM key [VALUES ... | FP32 ... | ELE ...] [COUNT ] [EPSION ]
VCARD key (number of elements)
VDIM key (dimension of the vectors)
VDEL key
And so forth. However there are nice things you can enable, if you want. For instance VADD has the [REDUCE] option that implements random projection in order to reduce the dimensionality of your embeddings. Less memory, and it is faster. And so forth.
Will work on it during xmas, it's quite fun.
It implements on-insertion normalization and int8 quantization. The algorithm to insert nodes inside the HNSW attempts to never leave isolated nodes and to get good quality links and so forth. More hacking needed.
Re: From where I left
#23Is there a good way to use the Anthropic models as a private person? It's my understanding you can only pay for them as a business.
Re: From where I left
#24I suspect he is going to make a lot of money coming back to save Redis from the negative press they have been having recently as well as the threat of Valkey. I sort of have to view it in light of all the other events that have been happening to Redis.
And Valkey with backing from AWS, GCP, and Oracle don't make any money at all ... wait aren't those trillion dollar monopolies? The pot calling the kettle black
https://www.linuxfoundation.org/press/linux-foundation-launc...
BTW are you an employee of Redis? You seem to have created this account just to reply to me.
Re: From where I left
#25[flagged]
World does need unlimited amount of software and I think it can even be mathematically proven. Amount of software required grows exponentially because every piece of software then requires even more software on top of it - just like managing security issues in al the software built, etc.
Re: From where I left
#26> hint: (Claude AI is in its own league) Is there a good way to use the Anthropic models as a private person? It's my understanding you can only pay for them as a business.
Edit: Go here and create an account: console.anthropic.com
Re: From where I left
#27> hint: (Claude AI is in its own league) Is there a good way to use the Anthropic models as a private person? It's my understanding you can only pay for them as a business.
Re: From where I left
#28> hint: (Claude AI is in its own league) Is there a good way to use the Anthropic models as a private person? It's my understanding you can only pay for them as a business.
Re: From where I left
#29Earlier quoted context omitted.
I covered this in the blog post: no big money involved, I asked to rejoin and without a big paycheck on purpose because to be free to act you should not get too much money, otherwise it's all fake.
But if you wanted to have influence without a big pay check, why not join Valkey? Redis, the company, in your absence has gotten a reputation as a predatory company that has attacked open source projects in other to further those goals. https://arstechnica.com/information-technology/2024/04/redis... https://news.ycombinator.com/item?id=39858144 https://news.ycombinator.com/item?id=42239607
Honestly even if Redis public image has not been stellar recently, I know the people that work at Redis, many engineers are there since the start, and I believe they have huge design abilities and can do what is needed to make Redis more useful for the community.
Re: From where I left
#30Earlier quoted context omitted.
Well, the VSIM example I got inside of 10 seconds, so at least for now you're on track :)
TLDR API: VADD key [VALUES | FP32 ] element VSIM key [VALUES ... | FP32 ... | ELE ...] [COUNT ] [EPSION ] VCARD key (number of elements) VDIM key (dimension of the vectors) VDEL key And so forth. However there are nice things you can enable, if you want. For instance VADD has the [REDUCE] option that implements random projection in order to reduce the dimensionality of your embeddings. Less memory, and it is faster.…