keihuming commited on
Commit
8398c20
·
verified ·
1 Parent(s): 9461faa

Update README.md

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