The model is the instruction-tuned version of
rinna/youri-7b. It adopts the Alpaca input format.
-
Model architecture
A 32-layer, 4096-hidden-size transformer-based language model. Refer to the
llama2 paper for architecture details.
-
Fine-tuning
The fine-tuning data is the subset of the following datasets.
- Databricks Dolly data
- Japanese Databricks Dolly data
- FLAN Instruction Tuning data and its Japanese translation
- Izumi lab LLM Japanese dataset
- The following sections are used
- alt
- aozora-txt
- CourseraParallel
- ParaNatCom
- Tab-delimited_Bilingual_Sentence_Pairs
- tanaka-corpus
- wikinews
- wordnet
- yasashi-japanese
- The remaining sections contain commonly used evaluation corpora so they are skipped to prevent data leak.
-
Contributors
-
Release date
October 31, 2023
1import torch
2from transformers import AutoTokenizer, AutoModelForCausalLM
3
4tokenizer = AutoTokenizer.from_pretrained("rinna/youri-7b-instruction")
5model = AutoModelForCausalLM.from_pretrained("rinna/youri-7b-instruction")
6
7if torch.cuda.is_available():
8 model = model.to("cuda")
9
10instruction = "次の日本語を英語に翻訳してください。"
11input = "大規模言語モデル(だいきぼげんごモデル、英: large language model、LLM)は、多数のパラメータ(数千万から数十億)を持つ人工ニューラルネットワークで構成されるコンピュータ言語モデルで、膨大なラベルなしテキストを使用して自己教師あり学習または半教師あり学習によって訓練が行われる。"
12prompt = f"""
13以下は、タスクを説明する指示と、文脈のある入力の組み合わせです。要求を適切に満たす応答を書きなさい。
14
15### 指示:
16{instruction}
17
18### 入力:
19{input}
20
21### 応答:
22"""
23token_ids = tokenizer.encode(prompt, add_special_tokens=False, return_tensors="pt")
24
25with torch.no_grad():
26 output_ids = model.generate(
27 token_ids.to(model.device),
28 max_new_tokens=200,
29 do_sample=True,
30 temperature=0.5,
31 pad_token_id=tokenizer.pad_token_id,
32 bos_token_id=tokenizer.bos_token_id,
33 eos_token_id=tokenizer.eos_token_id
34 )
35
36output = tokenizer.decode(output_ids.tolist()[0])
37print(output)
38"""
39以下は、タスクを説明する指示と、文脈のある入力の組み合わせです。要求を適切に満たす応答を書きなさい。
40
41### 指示:
42次の日本語を英語に翻訳してください。
43
44### 入力:
45大規模言語モデル(だいきぼげんごモデル、英: large language model、LLM)は、多数のパラメータ(数千万から数十億)を持つ人工ニューラルネットワークで構成されるコンピュータ言語モデルで、膨大なラベルなしテキストを使 用して自己教師あり学習または半教師あり学習によって訓練が行われる。
46
47### 応答:
48 Large language models (LLMs) are computer language models that are composed of artificial neural networks with millions to billions of parameters that are trained via self-supervised or semi-supervised learning using vast unlabeled text.</s>
49"""
The model uses the original llama-2 tokenizer.
1@misc{rinna-youri-7b-instruction,
2 title = {rinna/youri-7b-instruction},
3 author = {Zhao, Tianyu and Sawada, Kei},
4 url = {https://huggingface.co/rinna/youri-7b-instruction}
5}
6
7@inproceedings{sawada2024release,
8 title = {Release of Pre-Trained Models for the {J}apanese Language},
9 author = {Sawada, Kei and Zhao, Tianyu and Shing, Makoto and Mitsui, Kentaro and Kaga, Akio and Hono, Yukiya and Wakatsuki, Toshiaki and Mitsuda, Koh},
10 booktitle = {Proceedings of the 2024 Joint International Conference on Computational Linguistics, Language Resources and Evaluation (LREC-COLING 2024)},
11 month = {5},
12 year = {2024},
13 pages = {13898--13905},
14 url = {https://aclanthology.org/2024.lrec-main.1213},
15 note = {\url{https://arxiv.org/abs/2404.01657}}
16}