Earlier quoted context omitted.
I've done some experiments here with Llama 13B, in my subjective experience the original fp16 model is significantly better (particularly on coding tasks). There are a bunch of synthetic benchmarks such a wikitext2 PPL and all the whiz bang quantization schemes seem to score well but subjectively something is missing. I've been able to compare 4 bit GPTQ, naive int8, LLM.int8, fp16, and fp32. LLM.int8 does impressive…
> Llama 13B > Llama.cpp 30B > LLaMA-65B the "number B" stands for "number of billions" of parameters... trained on? like you take 65 billion words (from paragraphs / sentences from like, Wikipedia pages or whatever) and "train" the LLM. is that the metric? why aren't "more parameters" (higher B) always better? aka return better results how many "B" parameters is ChatGPT on GPT3.5 vs GPT4? GPT3: 175b GPT3.5: ? GPT4: ?…
No, it's just the size of the network (i.e. number of learnable parameters). The 13/30/65B models were each trained on ~1.4 trillion tokens of training data (each token is around half a word).