A 350M parameter LLaMA-style language model pretrained from scratch on a custom corpus. This is the base pretrained checkpoint — it has not yet been instruction-tuned or fine-tuned with any persona.
Do NOT use a standard LLaMA tokenizer with this model — the token IDs will be completely wrong and produce garbled output.
This is a raw pretrained language model. It has:
It predicts the next token based on patterns learned during pretraining. To use it as an assistant, it would need further fine-tuning (SFT, RLHF, etc.).
1from transformers import AutoModelForCausalLM, AutoTokenizer
2
3model = AutoModelForCausalLM.from_pretrained("0ldev/Lara-350M")
4tokenizer = AutoTokenizer.from_pretrained("0ldev/Lara-350M")
5
6inputs = tokenizer("The meaning of life is", return_tensors="pt")
7outputs = model.generate(**inputs, max_new_tokens=50)
8print(tokenizer.decode(outputs[0], skip_special_tokens=True))