Earlier quoted context omitted.
Bing also uses GPT-4 and it is very fast. Microsoft spends more ok compute.
It doesn't exclusively use GPT-4, you might be right anyway that their GPT-4 is much faster but you're also not always seeing GPT-4 with them.
Numbers every LLM developer should know
101–107 of 107 posts
Re: Numbers every LLM developer should know
#102Re: Numbers every LLM developer should know
#103Earlier quoted context omitted.
Prompt it to be information dense in its response then.
So I must specifically ask for it, but it's not at all the default.
Re: Numbers every LLM developer should know
#104Earlier quoted context omitted.
Only if you use gpt-4. gpt-3.5-turbo is much faster, and gpt-4 is only going to get faster as GPUs get faster.
Bing also uses GPT-4 and it is very fast. Microsoft spends more ok compute.
Re: Numbers every LLM developer should know
#105Earlier quoted context omitted.
Even that is being tackled by newer GPU architectures. For example, novelai is currently training an LLM in fp8 precision, using H100 GPUs.[1] [1] https://blog.novelai.net/anlatan-acquires-hgx-h100-cluster-4... https://blog.novelai.net/text-model-progress-is-going-good-8...
Cool stuff. I looked at https://en.wikipedia.org/wiki/Hopper_%28microarchitecture%29 and I noticed that that the fp8 support is only for the tensor cores and not the CUDA side. Does that mean training with H100 GPU in fp8 mode would use some software ecosystem that's not the existing vast existing CUDA one? Or am I just misunderstanding CUDA cores vs tensor cores? PS, as a joke, they should implement GPU fluint8 and…
Re: Numbers every LLM developer should know
#106Earlier quoted context omitted.
[Author] Completely disagree. Any analysis shows that you see perplexity reduction at 4 bits. Have a look at llama.cpp's results here: https://github.com/ggerganov/llama.cpp#quantization 4 bit has a perplexity score 0.13 or so higher.
You're just wrong. You're looking at the wrong numbers. The perplexity score of a model with twice the parameters in half the bits (4bit) is FAR LOWER (ie better). If you are limited to X RAM and have two 16bit models of size 4X and 2X then the 4X model in 4bit will always be far superior to the 2X model in 8bit, with far lower perplexity. Compare 13B's 4bit perplexity of 5.3607 to 7B's 8bit perplexity of 5.9069. Tha…