SoloLLM-1.0-123M-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.
Smaller-than-GPT-2 SoloLLM 1.0 base checkpoint; wins the fixed multiple-choice suite and most external checks, but does not beat GPT-2 small across every metric.
1from transformers import AutoModelForCausalLM, AutoTokenizer
2
3repo_id = "bmax16634/solollm-1.0-123m-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.