SoloLLM-1.0-152M-Base is a from-scratch decoder-only base language model from the SoloLLM project. It is trained for text completion, not instruction following or chat.
Best completed SoloLLM 1.0 base checkpoint; beats GPT-2 small across the fixed project eval suite, while using more parameters than GPT-2 small.
1from transformers import AutoModelForCausalLM, AutoTokenizer
2
3repo_id = "bmax16634/solollm-1.0-152m-base"
4tokenizer = AutoTokenizer.from_pretrained(repo_id)
5model = AutoModelForCausalLM.from_pretrained(repo_id, trust_remote_code=True)
This is a base model. It is not instruction-tuned, RLHF-tuned, safety-tuned, or optimized for chat behavior.