This LLaMA-based model has been fine-tuned for enhanced instruction-following capabilities using the Ichikara Instruction dataset provided by LLM-jp,
which was trained 2x faster with
Unsloth and Huggingface's TRL library.
関根聡, 安藤まや, 後藤美知子, 鈴木久美, 河原大輔, 井之上直也, 乾健太郎. ichikara-instruction: LLMのための日本語インストラクションデータの構築. 言語処理学会第30回年次大会(2024)
1from transformers import AutoModelForCausalLM, AutoTokenizer
2
3tokenizer = AutoTokenizer.from_pretrained("taka-too/llm-jp-3-13b-it")
4model = AutoModelForCausalLM.from_pretrained("taka-too/llm-jp-3-13b-it")