Phind Model beats GPT-4 at coding, with GPT-3.5 speed and 16k context
11–20 of 358 posts
Re: Phind Model beats GPT-4 at coding, with GPT-3.5 speed and 16k context
#12When I ask it as one statement it performed ok, but if I made more specifications with follow-up statements, it kept trying to go down one path even though I told it to do it a different way. A solid start but it definitely needs some improvements, IMO.
Re: Phind Model beats GPT-4 at coding, with GPT-3.5 speed and 16k context
#13This is great work, but HumanEval is an extremely limited benchmark and I don’t think you can seriously claim to beat GPT-4 at coding based only on that metric.
Re: Phind Model beats GPT-4 at coding, with GPT-3.5 speed and 16k context
#14This is great work, but HumanEval is an extremely limited benchmark and I don’t think you can seriously claim to beat GPT-4 at coding based only on that metric.
> However, we’ve found that HumanEval is a poor indicator of real-world helpfulness.
Re: Phind Model beats GPT-4 at coding, with GPT-3.5 speed and 16k context
#15The results I get are so-so. The rubric I use to evaluate coding LLM's is to ask it to create a Python script that determines if the contents of a given directory have been changed since the last time the script was run. This should be done recursively and handle files being added, removed, or modified and be based off the contents of the files and not the timestamps. When I ask it as one statement it performed ok, b…
Re: Phind Model beats GPT-4 at coding, with GPT-3.5 speed and 16k context
#16Re: Phind Model beats GPT-4 at coding, with GPT-3.5 speed and 16k context
#17Re: Phind Model beats GPT-4 at coding, with GPT-3.5 speed and 16k context
#18Is that with batching? If so, thats quite impressive.
> certain challenging questions where it is capable of getting the right answer, the Phind Model might take more generations to get to the right answer than GPT-4.
Some of this is sampler tuning. Y'all should look at grammar based sampling (https://github.com/ggerganov/llama.cpp/pull/1773) if you aren't using it already, as well as some of the "dynamic" sampling like mirostat and dynatemp: https://github.com/LostRuins/koboldcpp/pull/464
I think these should work with nvidia's implementation if you just swap the sampling out with the HF version.
BTW, all this is a great advantage of pulling away from OpenAI. You can dig in and implement experimental features that you just can't necessarily do through their API.
Re: Phind Model beats GPT-4 at coding, with GPT-3.5 speed and 16k context
#19This is awesome. Are you planning to open-source the V7 model?