fuwafuwa012 commited on
Commit
a41e65e
·
verified ·
1 Parent(s): 3b7204c

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +191 -1
README.md CHANGED
@@ -24,11 +24,201 @@ This llama model was trained 2x faster with [Unsloth](https://github.com/unsloth
24
 
25
  code version 2
26
  本コードは,elyza-tasks-100-TV_0.jsonlの回答のための推論用コードです。
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
27
  unslothのサンプルコードのハイパーパラメーターの値を変更して学習させたモデルになっています。
28
  変更点としては,以下の通りです。
29
  lora_alphaの値を64として正規化項を増やす。
30
  lora_dropoutを0.10としてdropoutを上昇させる。
31
  学習率を1e-5と上昇。
32
- 出力に対して,do_sample=True と temperature や top_p を加えることで出力の多様性を向上。
33
 
34
 
 
24
 
25
  code version 2
26
  本コードは,elyza-tasks-100-TV_0.jsonlの回答のための推論用コードです。
27
+
28
+ """
29
+ from unsloth import FastLanguageModel
30
+ import torch
31
+ max_seq_length = 512 # unslothではRoPEをサポートしているのでコンテキスト長は自由に設定可能
32
+ dtype = None # Noneにしておけば自動で設定
33
+ load_in_4bit = True # 今回は13Bモデルを扱うためTrue
34
+
35
+ model_id = "llm-jp/llm-jp-3-13b"
36
+ new_model_id = "llm-jp-3-13b-it" #Fine-Tuningしたモデルにつけたい名前、it: Instruction Tuning
37
+ # FastLanguageModel インスタンスを作成
38
+ model, tokenizer = FastLanguageModel.from_pretrained(
39
+ model_name=model_id,
40
+ dtype=dtype,
41
+ load_in_4bit=load_in_4bit,
42
+ trust_remote_code=True,
43
+ )
44
+
45
+ # SFT用のモデルを用意
46
+ model = FastLanguageModel.get_peft_model(
47
+ model,
48
+ r = 32,
49
+ target_modules = ["q_proj", "k_proj", "v_proj", "o_proj",
50
+ "gate_proj", "up_proj", "down_proj",],
51
+ lora_alpha = 64,
52
+ lora_dropout = 0.10,
53
+ bias = "none",
54
+ use_gradient_checkpointing = "unsloth",
55
+ random_state = 3407,
56
+ use_rslora = False,
57
+ loftq_config = None,
58
+ max_seq_length = max_seq_length,
59
+ )
60
+
61
+ # 学習に用いるデータセットの指定
62
+ # 今回はLLM-jp の公開している Ichikara Instruction を使います。データにアクセスするためには申請が必要ですので、使いたい方のみ申請をしてください。
63
+ # Ichikara Instruciton を Hugging Face Hub にて公開することはお控えください。
64
+ # また、CC-BY-NC-SAですのでモデルはライセンスを継承する前提でお使いください。
65
+
66
+ # 下記のリンクから申請を終えた先に Google Drive があり、Distribution20241221_all というフォルダごとダウンロードしてください。
67
+ # 今回は「ichikara-instruction-003-001-1.json」を使います。必要であれば展開(!unzip など)し、データセットのパスを適切に指定してください。
68
+ # omnicampusの開発環境では取得したデータを左側にドラッグアンドドロップしてお使いください。
69
+ # Google Colab の場合も左のサイドバーよりドラッグ&ドロップでアップデートしてください。
70
+
71
+ # https://liat-aip.sakura.ne.jp/wp/llmのための日本語インストラクションデータ作成/llmのための日本語インストラクションデータ-公開/
72
+ # 関根聡, 安藤まや, 後藤美知子, 鈴木久美, 河原大輔, 井之上直也, 乾健太郎. ichikara-instruction: LLMのための日本語インストラクションデータの構築. 言語処理学会第30回年次大会(2024)
73
+
74
+ from datasets import load_dataset
75
+
76
+ dataset = load_dataset("json", data_files="./ichikara-instruction-003-001-1.json")
77
+ # パスの指定にご注意ください。アップロードしたファイルを右クリックし、「パスをコピー」をクリック、上記の data_files と合致していることをご確認ください。Omnicampus のディレクトリ構造とは異なるかもしれません。
78
+
79
+ # 学習時のプロンプトフォーマットの定義
80
+ prompt = """### 指示
81
+ {}
82
+ ### 回答
83
+ {}"""
84
+
85
+
86
+ """
87
+ formatting_prompts_func: 各データをプロンプトに合わせた形式に合わせる
88
+ """
89
+ EOS_TOKEN = tokenizer.eos_token # トークナイザーのEOSトークン(文末トークン)
90
+ def formatting_prompts_func(examples):
91
+ input = examples["text"] # 入力データ
92
+ output = examples["output"] # 出力データ
93
+ text = prompt.format(input, output) + EOS_TOKEN # プロンプトの作成
94
+ return { "formatted_text" : text, } # 新しいフィールド "formatted_text" を返す
95
+ pass
96
+
97
+ # # 各データにフォーマットを適用
98
+ dataset = dataset.map(
99
+ formatting_prompts_func,
100
+ num_proc= 4, # 並列処理数を指定
101
+ )
102
+
103
+ dataset
104
+
105
+ # データを確認
106
+ print(dataset["train"]["formatted_text"][3])
107
+
108
+ from trl import SFTTrainer
109
+ from transformers import TrainingArguments
110
+ from unsloth import is_bfloat16_supported
111
+
112
+ trainer = SFTTrainer(
113
+ model = model,
114
+ tokenizer = tokenizer,
115
+ train_dataset=dataset["train"],
116
+ max_seq_length = max_seq_length,
117
+ dataset_text_field="formatted_text",
118
+ packing = False,
119
+ args = TrainingArguments(
120
+ per_device_train_batch_size = 2,
121
+ gradient_accumulation_steps = 4,
122
+ num_train_epochs = 1,
123
+ logging_steps = 10,
124
+ warmup_steps = 10,
125
+ save_steps=100,
126
+ save_total_limit=2,
127
+ max_steps=-1,
128
+ learning_rate = 2e-4,
129
+ fp16 = not is_bfloat16_supported(),
130
+ bf16 = is_bfloat16_supported(),
131
+ group_by_length=True,
132
+ seed = 3407,
133
+ output_dir = "outputs",
134
+ report_to = "none",
135
+ ),
136
+ )
137
+
138
+ #@title 現在のメモリ使用量を表示
139
+ gpu_stats = torch.cuda.get_device_properties(0)
140
+ start_gpu_memory = round(torch.cuda.max_memory_reserved() / 1024 / 1024 / 1024, 3)
141
+ max_memory = round(gpu_stats.total_memory / 1024 / 1024 / 1024, 3)
142
+ print(f"GPU = {gpu_stats.name}. Max memory = {max_memory} GB.")
143
+ print(f"{start_gpu_memory} GB of memory reserved.")
144
+
145
+ #@title 学習実行
146
+ trainer_stats = trainer.train()
147
+
148
+ # ELYZA-tasks-100-TVの読み込み。事前にファイルをアップロードしてください
149
+ # データセットの読み込み。
150
+ # omnicampusの開発環境では、左にタスクのjsonlをドラッグアンドドロップしてから実行。
151
+ import json
152
+ datasets = []
153
+ with open("/content//elyza-tasks-100-TV_0.jsonl", "r") as f:
154
+ item = ""
155
+ for line in f:
156
+ line = line.strip()
157
+ item += line
158
+ if item.endswith("}"):
159
+ datasets.append(json.loads(item))
160
+ item = ""
161
+
162
+ # 学習したモデルを用いてタスクを実行
163
+ from tqdm import tqdm
164
+
165
+ # 推論するためにモデルのモードを変更
166
+ FastLanguageModel.for_inference(model)
167
+
168
+ results = []
169
+ for dt in tqdm(datasets):
170
+ input = dt["input"]
171
+
172
+ prompt = f"""### 指示\n{input}\n### 回答\n"""
173
+
174
+ inputs = tokenizer([prompt], return_tensors = "pt").to(model.device)
175
+
176
+ # outputs = model.generate(**inputs, max_new_tokens = 512, use_cache = True, do_sample=False, repetition_penalty=1.2)
177
+ outputs = model.generate(
178
+ **inputs,
179
+ max_new_tokens=512,
180
+ temperature=0.7,
181
+ top_p=0.9,
182
+ repetition_penalty=1.2,
183
+ use_cache=True,
184
+ do_sample=True
185
+ )
186
+
187
+ prediction = tokenizer.decode(outputs[0], skip_special_tokens=True).split('\n### 回答')[-1]
188
+
189
+ results.append({"task_id": dt["task_id"], "input": input, "output": prediction})
190
+
191
+ # jsonlで保存
192
+ with open(f"{new_model_id}_output.jsonl", 'w', encoding='utf-8') as f:
193
+ for result in results:
194
+ json.dump(result, f, ensure_ascii=False)
195
+ f.write('\n')
196
+
197
+ """モデルとトークナイザーをHugging Faceにアップロードします。
198
+ 本コードではLoRAのアダブタのみを保存します。
199
+ このアダプタを用いた推論方法はModel_Inference_Template_unsloth_20241127.ipynbをご参照ください。
200
+
201
+ 一旦privateでアップロードしてください。
202
+ https://docs.unsloth.ai/basics/saving-and-using-models
203
+ """
204
+
205
+ # LoRAアダプタだけ保存
206
+ model.push_to_hub_merged(
207
+ new_model_id+"_lora",
208
+ tokenizer=tokenizer,
209
+ save_method="lora",
210
+ token=HF_TOKEN,
211
+ private=True
212
+ )
213
+ """
214
+
215
+
216
+
217
  unslothのサンプルコードのハイパーパラメーターの値を変更して学習させたモデルになっています。
218
  変更点としては,以下の通りです。
219
  lora_alphaの値を64として正規化項を増やす。
220
  lora_dropoutを0.10としてdropoutを上昇させる。
221
  学習率を1e-5と上昇。
222
+ 出力に対して,do_sample=True と temperature や top_p を加えることで出力の多様性を向上しました。
223
 
224