Views
No views yet
| Property | Value |
|---|---|
| Architecture | LLaMA-style (pre-norm, SwiGLU, RoPE) |
| Parameters | ~2.7B |
| Training tokens | 220B |
| Knowledge cutoff | January 2015 |
| Vocab size | 50,432 |
| Context length | 2,048 |
| Original format | Apple Open LM |
1from transformers import AutoModelForCausalLM, AutoTokenizer
2import torch
3
4model = AutoModelForCausalLM.from_pretrained(
5 "dogtooth/open-lm-3b-201501",
6 dtype=torch.bfloat16,
7 device_map="auto",
8 trust_remote_code=True,
9)
10tokenizer = AutoTokenizer.from_pretrained("EleutherAI/gpt-neox-20b").pt checkpoint to a custom OpenLMForCausalLM format.trust_remote_code=True when loading.1@article{jain2024ticlm,
2 title={Time-Continual Learning from a Streaming Language Model},
3 author={Jain, Ameya and Ramesh, Aakanksha and Li, Tianjian and others},
4 journal={arXiv preprint arXiv:2410.14660},
5 year={2024}
6}