SuzuCastella commited on
Commit
d45e433
·
verified ·
1 Parent(s): 772f2bc

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +260 -0
README.md CHANGED
@@ -20,3 +20,263 @@ language:
20
  This llama model was trained 2x faster with [Unsloth](https://github.com/unslothai/unsloth) and Huggingface's TRL library.
21
 
22
  [<img src="https://raw.githubusercontent.com/unslothai/unsloth/main/images/unsloth%20made%20with%20love.png" width="200"/>](https://github.com/unslothai/unsloth)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
20
  This llama model was trained 2x faster with [Unsloth](https://github.com/unslothai/unsloth) and Huggingface's TRL library.
21
 
22
  [<img src="https://raw.githubusercontent.com/unslothai/unsloth/main/images/unsloth%20made%20with%20love.png" width="200"/>](https://github.com/unslothai/unsloth)
23
+
24
+ # Google Colab の場合は上記の環境構築手順を行なわず、単にこのセルから実行していってください。
25
+ !pip uninstall unsloth -y
26
+ !pip install --upgrade --no-cache-dir "unsloth[colab-new] @ git+https://github.com/unslothai/unsloth.git"
27
+
28
+ # Google Colab のデフォルトで入っているパッケージをアップグレード(Moriyasu さんありがとうございます)
29
+ !pip install --upgrade torch
30
+ !pip install --upgrade xformers
31
+
32
+ # notebookでインタラクティブな表示を可能とする(ただし、うまく動かない場合あり)
33
+ # Google Colabでは実行不要
34
+ !pip install ipywidgets --upgrade
35
+
36
+ # Install Flash Attention 2 for softcapping support
37
+ import torch
38
+ if torch.cuda.get_device_capability()[0] >= 8:
39
+ !pip install --no-deps packaging ninja einops "flash-attn>=2.6.3"
40
+
41
+ # Hugging Face Token を指定
42
+ # 下記の URL から Hugging Face Token を取得できますので下記の HF_TOKEN に入れてください。
43
+ # Write権限を付与してください。
44
+ # https://huggingface.co/settings/tokens
45
+ HF_TOKEN = "" #@param {type:"string"}
46
+
47
+ # あるいは Google Colab シークレットを使う場合、左のサイドバーより🔑マークをクリック
48
+ # HF_TOKEN という名前で Value に Hugging Face Token を入れてください。
49
+ # ノートブックからのアクセスのトグルをオンにし、下記の二行のコードのコメントアウトを外してください。
50
+
51
+ # from google.colab import userdata
52
+ # HF_TOKEN=userdata.get('HF_TOKEN')
53
+
54
+ # llm-jp/llm-jp-3-13bを4bit量子化のqLoRA設定でロード。
55
+
56
+ from unsloth import FastLanguageModel
57
+ import torch
58
+ max_seq_length = 512 # unslothではRoPEをサポートしているのでコンテキスト長は自由に設定可能
59
+ dtype = None # Noneにしておけば自動で設定
60
+ load_in_4bit = True # 今回は13Bモデルを扱うためTrue
61
+
62
+ model_id = "llm-jp/llm-jp-3-13b"
63
+ new_model_id = "llm-jp-3-13b-it" #Fine-Tuningしたモデルにつけたい名前、it: Instruction Tuning
64
+ # FastLanguageModel インスタンスを作成
65
+ model, tokenizer = FastLanguageModel.from_pretrained(
66
+ model_name=model_id,
67
+ dtype=dtype,
68
+ load_in_4bit=load_in_4bit,
69
+ trust_remote_code=True,
70
+ )
71
+
72
+ # SFT用のモデルを用意
73
+ model = FastLanguageModel.get_peft_model(
74
+ model,
75
+ r = 32,
76
+ target_modules = ["q_proj", "k_proj", "v_proj", "o_proj",
77
+ "gate_proj", "up_proj", "down_proj",],
78
+ lora_alpha = 32,
79
+ lora_dropout = 0.05,
80
+ bias = "none",
81
+ use_gradient_checkpointing = "unsloth",
82
+ random_state = 3407,
83
+ use_rslora = False,
84
+ loftq_config = None,
85
+ max_seq_length = max_seq_length,
86
+ )
87
+
88
+ # 学習に用いるデータセットの指定
89
+ # 今回はLLM-jp の公開している Ichikara Instruction を使います。データにアクセスするためには申請が必要ですので、使いたい方のみ申請をしてください。
90
+ # Ichikara Instruciton を Hugging Face Hub にて公開することはお控えください。
91
+ # また、CC-BY-NC-SAですのでモデルはライセンスを継承する前提でお使いください。
92
+
93
+ # 下記のリンクから申請を終えた先に Google Drive があり、Distribution20241221_all というフォルダごとダウンロードしてください。
94
+ # 今回は「ichikara-instruction-003-001-1.json」を使います。必要であれば展開(!unzip など)し、データセットのパスを適切に指定してください。
95
+ # omnicampusの開発環境では取得したデータを左側にドラッグアンドドロップしてお使いください。
96
+ # Google Colab の場合も左のサイドバーよりドラッグ&ドロップでアップデートしてください。
97
+
98
+ # https://liat-aip.sakura.ne.jp/wp/llmのための日本語インストラクションデータ作成/llmのための日本語インストラクションデータ-公開/
99
+ # 関根聡, 安藤まや, 後藤美知子, 鈴木久美, 河原大輔, 井之上直也, 乾健太郎. ichikara-instruction: LLMのための日本語インストラクションデータの構築. 言語処理学会第30回年次大会(2024)
100
+
101
+ from datasets import load_dataset
102
+
103
+ dataset = load_dataset("json", data_files="./ichikara-instruction-003-001-1.json")
104
+ # パスの指定にご注意ください。アップロードしたファイルを右クリックし、「パスをコピー」をクリック、上記の data_files と合致していることをご確認ください。Omnicampus のディレクトリ構造とは異なるかもしれません。
105
+
106
+ # 学習時のプロンプトフォーマットの定義
107
+ prompt = """### 指示
108
+ {}
109
+ ### 回答
110
+ {}"""
111
+
112
+
113
+ """
114
+ formatting_prompts_func: 各データをプロンプトに合わせた形式に合わせる
115
+ """
116
+ EOS_TOKEN = tokenizer.eos_token # トークナイザーのEOSトークン(文末トークン)
117
+ def formatting_prompts_func(examples):
118
+ input = examples["text"] # 入力データ
119
+ output = examples["output"] # 出力データ
120
+ text = prompt.format(input, output) + EOS_TOKEN # プロンプトの作成
121
+ return { "formatted_text" : text, } # 新しいフィールド "formatted_text" を返す
122
+ pass
123
+
124
+ # # 各データにフォーマットを適用
125
+ dataset = dataset.map(
126
+ formatting_prompts_func,
127
+ num_proc= 4, # 並列処理数を指定
128
+ )
129
+
130
+ dataset
131
+
132
+ # データを確認
133
+ print(dataset["train"]["formatted_text"][3])
134
+
135
+ """
136
+ training_arguments: 学習の設定
137
+
138
+ - output_dir:
139
+ -トレーニング後のモデルを保存するディレクトリ
140
+
141
+ - per_device_train_batch_size:
142
+ - デバイスごとのトレーニングバッチサイズ
143
+
144
+ - per_device_eval_batch_size:
145
+ - デバイスごとの評価バッチサイズ
146
+
147
+ - gradient_accumulation_steps:
148
+ - 勾配を更新する前にステップを積み重ねる回数
149
+
150
+ - optim:
151
+ - オプティマイザの設定
152
+
153
+ - num_train_epochs:
154
+ - エポック数
155
+
156
+ - eval_strategy:
157
+ - 評価の戦略 ("no"/"steps"/"epoch")
158
+
159
+ - eval_steps:
160
+ - eval_strategyが"steps"のとき、評価を行うstep間隔
161
+
162
+ - logging_strategy:
163
+ - ログ記録の戦略
164
+
165
+ - logging_steps:
166
+ - ログを出力するステップ間隔
167
+
168
+ - warmup_steps:
169
+ - 学習率のウォームアップステップ数
170
+
171
+ - save_steps:
172
+ - モデルを保存するステップ間隔
173
+
174
+ - save_total_limit:
175
+ - 保存しておくcheckpointの数
176
+
177
+ - max_steps:
178
+ - トレーニングの最大ステップ数
179
+
180
+ - learning_rate:
181
+ - 学習率
182
+
183
+ - fp16:
184
+ - 16bit浮動小数点の使用設定(第8回演習を参考にすると良いです)
185
+
186
+ - bf16:
187
+ - BFloat16の使用設定
188
+
189
+ - group_by_length:
190
+ - 入力シーケンスの長さによりバッチをグループ化 (トレーニングの効率化)
191
+
192
+ - report_to:
193
+ - ログの送信先 ("wandb"/"tensorboard"など)
194
+ """
195
+ from trl import SFTTrainer
196
+ from transformers import TrainingArguments
197
+ from unsloth import is_bfloat16_supported
198
+
199
+ trainer = SFTTrainer(
200
+ model = model,
201
+ tokenizer = tokenizer,
202
+ train_dataset=dataset["train"],
203
+ max_seq_length = max_seq_length,
204
+ dataset_text_field="formatted_text",
205
+ packing = False,
206
+ args = TrainingArguments(
207
+ per_device_train_batch_size = 2,
208
+ gradient_accumulation_steps = 4,
209
+ num_train_epochs = 1,
210
+ logging_steps = 10,
211
+ warmup_steps = 10,
212
+ save_steps=100,
213
+ save_total_limit=2,
214
+ max_steps=-1,
215
+ learning_rate = 2e-4,
216
+ fp16 = not is_bfloat16_supported(),
217
+ bf16 = is_bfloat16_supported(),
218
+ group_by_length=True,
219
+ seed = 3407,
220
+ output_dir = "outputs",
221
+ report_to = "none",
222
+ ),
223
+ )
224
+
225
+ #@title 現在のメモリ使用量を表示
226
+ gpu_stats = torch.cuda.get_device_properties(0)
227
+ start_gpu_memory = round(torch.cuda.max_memory_reserved() / 1024 / 1024 / 1024, 3)
228
+ max_memory = round(gpu_stats.total_memory / 1024 / 1024 / 1024, 3)
229
+ print(f"GPU = {gpu_stats.name}. Max memory = {max_memory} GB.")
230
+ print(f"{start_gpu_memory} GB of memory reserved.")
231
+
232
+ #@title 学習実行
233
+ trainer_stats = trainer.train()
234
+
235
+ # ELYZA-tasks-100-TVの読み込み。事前にファイルをアップロードしてください
236
+ # データセットの読み込み。
237
+ # omnicampusの開発環境では、左にタスクのjsonlをドラッグアンドドロップしてから実行。
238
+ import json
239
+ datasets = []
240
+ with open("/content//elyza-tasks-100-TV_0.jsonl", "r") as f:
241
+ item = ""
242
+ for line in f:
243
+ line = line.strip()
244
+ item += line
245
+ if item.endswith("}"):
246
+ datasets.append(json.loads(item))
247
+ item = ""
248
+
249
+ # 学習したモデルを用いてタスクを実行
250
+ from tqdm import tqdm
251
+
252
+ # 推論するためにモデルのモードを変更
253
+ FastLanguageModel.for_inference(model)
254
+
255
+ results = []
256
+ for dt in tqdm(datasets):
257
+ input = dt["input"]
258
+
259
+ prompt = f"""### 指示\n{input}\n### 回答\n"""
260
+
261
+ inputs = tokenizer([prompt], return_tensors = "pt").to(model.device)
262
+
263
+ outputs = model.generate(**inputs, max_new_tokens = 512, use_cache = True, do_sample=False, repetition_penalty=1.2)
264
+ prediction = tokenizer.decode(outputs[0], skip_special_tokens=True).split('\n### 回答')[-1]
265
+
266
+ results.append({"task_id": dt["task_id"], "input": input, "output": prediction})
267
+
268
+ # jsonlで保存
269
+ with open(f"{new_model_id}_output.jsonl", 'w', encoding='utf-8') as f:
270
+ for result in results:
271
+ json.dump(result, f, ensure_ascii=False)
272
+ f.write('\n')
273
+
274
+ # LoRAアダプタだけ保存
275
+ new_model_name = "SuzuCastella/llm-jp-3-13b-finetune2"
276
+ model.push_to_hub_merged(
277
+ new_model_name,
278
+ tokenizer=tokenizer,
279
+ save_method="lora",
280
+ token=HF_TOKEN,
281
+ private=True
282
+ )