We present an open-source reproduction of Meta AI's LLaMa 2. However, with significantly reduced model sizes, LiteLlama-460M-1T has 460M parameters trained with 1T tokens.
Dataset and Tokenization
We train our models on part of RedPajama dataset. We use the GPT2Tokenizer to tokenize the text.
Training Details
The model was trained with ~1T tokens (0.98T). num of tokens = stepslengthbatch_size=4996791024192=98240888832≈0.98T.
The experimental checkpoints can be directly loaded by Transformers library. The following code snippet shows how to load the our experimental model and generate text with it.
importtorchfromtransformersimportAutoTokenizer,AutoModelForCausalLMmodel_path='ahxt/LiteLlama-460M-1T'model=AutoModelForCausalLM.from_pretrained(model_path)tokenizer=AutoTokenizer.from_pretrained(model_path)model.eval()prompt='Q: What is the largest bird?\nA:'input_ids=tokenizer(prompt,return_tensors="pt").input_idstokens=model.generate(input_ids,max_length=20)print(tokenizer.decode(tokens[0].tolist(),skip_special_tokens=True))# Q: What is the largest bird?\nA: The largest bird is a black-headed gull.
This model was developed by Xiaotian Han from Texas A&M University at the DATA Lab under the supervision of Prof. Xia "Ben" Hu, and the model is released under MIT License.