Amber is an7B English language model with the LLaMA architecture. Amber is part of LLM360's Pebble model series.
360 model checkpoints and the full data sequence are available under the Apache 2.0 license.
Amber is not a SOTA model. Amber is released to make LLM training knowledge accessible to all.
Please refer to our
W&B project page for complete training logs and evaluation results.
1from transformers import LlamaTokenizer, LlamaForCausalLM
2
3tokenizer = LlamaTokenizer.from_pretrained("LLM360/Amber", revision="ckpt_356")
4model = LlamaForCausalLM.from_pretrained("LLM360/Amber", revision="ckpt_356")
5
6input_text = "translate English to German: How old are you?"
7input_ids = tokenizer(input_text, return_tensors="pt").input_ids
8
9outputs = model.generate(input_ids)
10print(tokenizer.decode(outputs[0]))
11
LLM360 is an initiative for comprehensive and fully open-sourced LLMs,
where all training details, model checkpoints, intermediate results, and
additional analyses are made available to the community. Our goal is to advance
the field by inviting the community to deepen the understanding of LLMs
together. As the first step of the project LLM360, we release all intermediate
model checkpoints, our fully-prepared pre-training dataset, all source code and
configurations, and training details. We are
committed to continually pushing the boundaries of LLMs through this open-source
effort.
1@misc{liu2023llm360,
2 title={LLM360: Towards Fully Transparent Open-Source LLMs},
3 author={Zhengzhong Liu and Aurick Qiao and Willie Neiswanger and Hongyi Wang and Bowen Tan and Tianhua Tao and Junbo Li and Yuqi Wang and Suqi Sun and Omkar Pangarkar and Richard Fan and Yi Gu and Victor Miller and Yonghao Zhuang and Guowei He and Haonan Li and Fajri Koto and Liping Tang and Nikhil Ranjan and Zhiqiang Shen and Xuguang Ren and Roberto Iriondo and Cun Mu and Zhiting Hu and Mark Schulze and Preslav Nakov and Tim Baldwin and Eric P. Xing},
4 year={2023},
5 eprint={2312.06550},
6 archivePrefix={arXiv},
7 primaryClass={cs.CL}
8}