Views
No views yet
dogtooth/open-lm-3b-201305, trained on the Dolci-Think 300K dataset filtered to pre-2013 content to preserve the 201305 knowledge cutoff.dogtooth/open-lm-3b-201305OpenLMForCausalLM, loaded via trust_remote_code=True)1from transformers import AutoModelForCausalLM, AutoTokenizer
2
3model_id = "jackzhang/openlm_3b_201305_dolci_think_300k_pre2013_sft_full-15500"
4tok = AutoTokenizer.from_pretrained(model_id, trust_remote_code=True)
5model = AutoModelForCausalLM.from_pretrained(
6 model_id, trust_remote_code=True, dtype="bfloat16", device_map="auto"
7)