taka00770078 commited on
Commit
0696230
·
verified ·
1 Parent(s): 0ed4db4

Update README.md

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