I just spent a few minutes doing a comparison between Phind and GPT-4 for a very high-level question on a distributed job queue. I gave them both the same fairly vague sketch of a kind of system I would like to build. Here are my impressions: In the positives of Phind: * Phind was able, even eager, to recommend specific libraries relevant to the implementation. The recommendations matched my own research. GPT-4 takes…
This is a good point about GPT-4, it can intuit the "question behind the question" really well compared with other models. And it's been profoundly useful for me with the most random tasks I knew nothing about prior (like fixing a wall in my house), etc.
Phind Model beats GPT-4 at coding, with GPT-3.5 speed and 16k context
321–330 of 358 posts
Re: Phind Model beats GPT-4 at coding, with GPT-3.5 speed and 16k context
#322Earlier quoted context omitted.
They are. Moreover, the idea that AI companies are missing and/or not implementing this “obvious” tactic is hilarious. Folks, these approaches have profound consequences for training and inference performance. Y’all aren’t pointing out some low hanging fruit here, lol
Actually, yes I am pointing out low hanging fruit here. These approaches do not have "profound consequences" for inference or training performance. In fact, sentence transformer models run orders of magnitude more quickly. Performance penalties will be small. Also, I actually have several top NLP conference publications, so I'm not some charlatan when I say these things. I've actually physically used and seen these t…
You ain’t seen nuthin’ yet…
Re: Phind Model beats GPT-4 at coding, with GPT-3.5 speed and 16k context
#323Earlier quoted context omitted.
I don't think they're saying they're doing batch size of 1, just giving performance expectations of user facing performance
I think they _are_ saying batch size 1, given that rushingcreek is OP.
Re: Phind Model beats GPT-4 at coding, with GPT-3.5 speed and 16k context
#324Earlier quoted context omitted.
Even all of that is on the wrong track. There is nothing that I can see anywhere about controlling an ATV with the homekit accessory protocol.
Then you asked the wrong question. AFAIK Apple generally does not allow arbitrary remote control (headless mode) for security reasons — it could be used for spam automation!
Really I just need to get an LLM to port pyatv to C# for me I guess.
Re: Phind Model beats GPT-4 at coding, with GPT-3.5 speed and 16k context
#325Earlier quoted context omitted.
I think they _are_ saying batch size 1, given that rushingcreek is OP.
Yes they are saying batch size 1 for the benchmarks, but they aren't doing batch size 1 in prod (obviously).
With TensorRT-LLM + in-flight batching you can oversubscribe that one batch slot, by beginning to process request N+1 while finishing request N, which can help a lot at scale.
Re: Phind Model beats GPT-4 at coding, with GPT-3.5 speed and 16k context
#326I use Phind daily, including the VSCode extension, and I love it. Much better than anything ChatGPT is able to come up and the code it generates requires little-to-no modification to work properly. Very big fan!
Re: Phind Model beats GPT-4 at coding, with GPT-3.5 speed and 16k context
#327Earlier quoted context omitted.
Yes they are saying batch size 1 for the benchmarks, but they aren't doing batch size 1 in prod (obviously).
I don't think that is obvious. If your use case demands lowest latency at any cost, you might run batch size 1. I believe replit's new code model (announced about a month ago) runs at batch 1 in prod, for example, because code completions have to feel really fast to be useful. With TensorRT-LLM + in-flight batching you can oversubscribe that one batch slot, by beginning to process request N+1 while finishing request…
I suppose one could get decent utilization by prompt processing one user while generating tokens for another.
Re: Phind Model beats GPT-4 at coding, with GPT-3.5 speed and 16k context
#328Earlier quoted context omitted.
that benchmark(HumanEval) is some public benchmark built by others.
That kind of benchmark is a lot more reliable for models published before the benchmarks; models published afterwards have more opportunity to "study to the test". That's especially a concern when a company explicitly uses its score on that benchmark as a marketing point.
Re: Phind Model beats GPT-4 at coding, with GPT-3.5 speed and 16k context
#329Earlier quoted context omitted.
FWIW The default context window of GPT-4 via ChatGPT is about to change to 32k.
Given the number of times it just fails with large prompts on 32k contexts, I'm not sure if they'ready for this. In my experience, if you're consuming 20k+ tokens failure rate is more than 50%.
Re: Phind Model beats GPT-4 at coding, with GPT-3.5 speed and 16k context
#330Earlier quoted context omitted.
That kind of benchmark is a lot more reliable for models published before the benchmarks; models published afterwards have more opportunity to "study to the test". That's especially a concern when a company explicitly uses its score on that benchmark as a marketing point.
sure, but it is the best thing we have.