Mori-kamiyama commited on
Commit
9b7516f
·
verified ·
1 Parent(s): 4f40659

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +342 -0
README.md CHANGED
@@ -9,6 +9,8 @@ tags:
9
  license: apache-2.0
10
  language:
11
  - en
 
 
12
  ---
13
 
14
  # Uploaded model
@@ -20,3 +22,343 @@ 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)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9
  license: apache-2.0
10
  language:
11
  - en
12
+ datasets:
13
+ - llm-jp/magpie-sft-v1.0
14
  ---
15
 
16
  # Uploaded model
 
22
  This llama model was trained 2x faster with [Unsloth](https://github.com/unslothai/unsloth) and Huggingface's TRL library.
23
 
24
  [<img src="https://raw.githubusercontent.com/unslothai/unsloth/main/images/unsloth%20made%20with%20love.png" width="200"/>](https://github.com/unslothai/unsloth)
25
+
26
+ ```
27
+ # Google Colab の場合は上記の環境構築手順を行なわず、単にこのセルから実行していってください。
28
+ !pip install --upgrade pip setuptools wheel build
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
+ # llm-jp/llm-jp-3-13bを4bit量子化のqLoRA設定でロード。
45
+ from unsloth import FastLanguageModel
46
+ import torch
47
+
48
+ max_seq_length = 512 # コンテキスト長は任意に設定可能(unslothはRoPE対応)
49
+ dtype = None # 自動でdtypeを選択
50
+ load_in_4bit = True # 13Bモデルへの4bit量子化を有効化
51
+
52
+ model_id = "llm-jp/llm-jp-3-13b"
53
+ new_model_id = "llm-jp/llm-jp-3-13b-it" # Fine-Tuningしたモデル名
54
+
55
+ # trust_remote_codeはできればFalse推奨(安全性重視)
56
+ model, tokenizer = FastLanguageModel.from_pretrained(
57
+ model_name = model_id,
58
+ dtype = dtype,
59
+ load_in_4bit = load_in_4bit,
60
+ trust_remote_code = False, # TrueからFalseに変更、安全を重視
61
+ )
62
+
63
+ # LoRA設定: lora_dropoutを0に変更して高速化
64
+ model = FastLanguageModel.get_peft_model(
65
+ model,
66
+ r = 32,
67
+ target_modules = ["q_proj", "k_proj", "v_proj", "o_proj",
68
+ "gate_proj", "up_proj", "down_proj"],
69
+ lora_alpha = 32,
70
+ lora_dropout = 0.0, # 0.05 → 0に変更して警告回避 & 高速化
71
+ bias = "none",
72
+ use_gradient_checkpointing = "unsloth",
73
+ random_state = 3407,
74
+ use_rslora = False,
75
+ loftq_config = None,
76
+ max_seq_length = max_seq_length,
77
+ )
78
+
79
+ # distutilsの警告対策(必要なら別途、setuptoolsアップデート)
80
+ # pip install --upgrade setuptools
81
+
82
+ print("Model and tokenizer loaded successfully with LoRA configuration.")
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, concatenate_datasets # concatenate_datasets をインポート
98
+
99
+ # ローカルデータセットの読み込み
100
+ dataset = load_dataset(
101
+ "json",
102
+ data_files=[
103
+ "./ichikara-instruction-003-001-1.json",
104
+ "./ichikara-instruction-003-001-2.1.json",
105
+ "./ichikara-instruction-003-001-2.2.json",
106
+ "./ichikara-instruction-003-001-5.1.json",
107
+ "./ichikara-instruction-003-001-5.2.json"
108
+ ]
109
+ )
110
+
111
+ # Hugging Face Hub 上のデータセットを読み込み
112
+ remote_dataset = load_dataset("llm-jp/magpie-sft-v1.0")
113
+
114
+ # データセットを結合し、10k件に制限
115
+ combined_dataset = concatenate_datasets([
116
+ dataset['train'], # 修正: ローカルデータセットの 'train' を参照
117
+ remote_dataset['train'].select(range(min(len(remote_dataset['train']), 10000)))
118
+ ])
119
+
120
+ # 結合後のデータセットを確認
121
+ print(combined_dataset)
122
+ # パスの指定にご注意ください。アップロードしたファイルを右クリックし、「パスをコピー」をクリック、上記の data_files と合致していることをご確認ください。Omnicampus のディレクトリ構造とは異なるかもしれません。
123
+
124
+ print(remote_dataset) # データセットの情報を確認
125
+ print(remote_dataset['train'].num_rows) # トレーニングデータのサンプル数
126
+ print(remote_dataset['train'][0]) # サンプルデータの一部を確認
127
+
128
+ # 学習時のプロンプトフォーマットの定義
129
+ prompt = """### 指示
130
+ {}
131
+ ### 回答
132
+ {}"""
133
+
134
+ EOS_TOKEN = tokenizer.eos_token # トークナイザーのEOSトークン(文末トークン)
135
+
136
+ # フォーマット関数
137
+ def formatting_prompts_func(examples):
138
+ """
139
+ datasetのサンプル(examples)からformatted_textを生成する関数。
140
+
141
+ - `conversations` が存在し、かつ2つ以上の要素があれば、
142
+ userとassistantのやりとりとしてフォーマット。
143
+ - それ以外の場合は、ローカルdatasetの`text`と`output`を利用。
144
+ - どちらもなければ空文字列を返す。
145
+ """
146
+ user_input = None
147
+ assistant_output = None
148
+
149
+ # conversationsが存在するかチェック
150
+ conversations = examples.get("conversations", None)
151
+ if conversations and len(conversations) >= 2:
152
+ # remote_dataset形式: conversations[0]["content"]がユーザ発話、conversations[1]["content"]がアシスタント発話
153
+ user_input = conversations[0]["content"]
154
+ assistant_output = conversations[1]["content"]
155
+ else:
156
+ # local dataset形式: "text"と"output"フィールドが存在
157
+ text_field = examples.get("text", None)
158
+ output_field = examples.get("output", None)
159
+ if text_field is not None and output_field is not None:
160
+ user_input = text_field
161
+ assistant_output = output_field
162
+
163
+ if user_input is not None and assistant_output is not None:
164
+ formatted = prompt.format(user_input, assistant_output) + EOS_TOKEN
165
+ else:
166
+ # conversations も text/output も有効でない場合は空文字
167
+ formatted = ""
168
+
169
+ return {"formatted_text": formatted}
170
+
171
+ # フォーマッティング
172
+ formatted_dataset = combined_dataset.map(
173
+ formatting_prompts_func,
174
+ num_proc=4
175
+ )
176
+
177
+ # 空文字のformatted_textをフィルタリング
178
+ def is_nonempty(example):
179
+ return len(example["formatted_text"].strip()) > 0
180
+
181
+ formatted_dataset = formatted_dataset.filter(is_nonempty)
182
+
183
+ # データの確認
184
+ print(formatted_dataset)
185
+ print(formatted_dataset[0])
186
+
187
+ """
188
+ training_arguments: 学習の設定
189
+
190
+ - output_dir:
191
+ -トレーニング後のモデルを保存するディレクトリ
192
+
193
+ - per_device_train_batch_size:
194
+ - デバイスごとのトレーニングバッチサイズ
195
+
196
+ - per_device_eval_batch_size:
197
+ - デバイスごとの評価バッチサイズ
198
+
199
+ - gradient_accumulation_steps:
200
+ - 勾配を更新する前にステップを積み重ねる回数
201
+
202
+ - optim:
203
+ - オプティマイザの設定
204
+
205
+ - num_train_epochs:
206
+ - エポック数
207
+
208
+ - eval_strategy:
209
+ - 評価の戦略 ("no"/"steps"/"epoch")
210
+
211
+ - eval_steps:
212
+ - eval_strategyが"steps"のとき、評価を行うstep間隔
213
+
214
+ - logging_strategy:
215
+ - ログ記録の戦略
216
+
217
+ - logging_steps:
218
+ - ログを出力するステップ間隔
219
+
220
+ - warmup_steps:
221
+ - 学習率のウォームアップステップ数
222
+
223
+ - save_steps:
224
+ - モデルを保存するステップ間隔
225
+
226
+ - save_total_limit:
227
+ - 保存しておくcheckpointの数
228
+
229
+ - max_steps:
230
+ - トレーニングの最大ステップ数
231
+
232
+ - learning_rate:
233
+ - 学習率
234
+
235
+ - fp16:
236
+ - 16bit浮動小数点の使用設定(第8回演習を参考にすると良いです)
237
+
238
+ - bf16:
239
+ - BFloat16の使用設定
240
+
241
+ - group_by_length:
242
+ - 入力シーケンスの長さによりバッチをグループ化 (トレーニングの効率化)
243
+
244
+ - report_to:
245
+ - ログの送信先 ("wandb"/"tensorboard"など)
246
+ """
247
+ from trl import SFTTrainer
248
+ from transformers import TrainingArguments
249
+ from unsloth import is_bfloat16_supported
250
+
251
+ trainer = SFTTrainer(
252
+ model=model,
253
+ tokenizer=tokenizer,
254
+ train_dataset=formatted_dataset,
255
+ max_seq_length=max_seq_length,
256
+ dataset_text_field="formatted_text",
257
+ packing=False,
258
+ args=TrainingArguments(
259
+ per_device_train_batch_size=2,
260
+ gradient_accumulation_steps=4,
261
+ num_train_epochs=1,
262
+ logging_steps=10,
263
+ warmup_steps=10,
264
+ save_steps=100,
265
+ save_total_limit=2,
266
+ max_steps=-1,
267
+ learning_rate=5e-5,
268
+ fp16=not is_bfloat16_supported(),
269
+ bf16=is_bfloat16_supported(),
270
+ group_by_length=True,
271
+ seed=3407,
272
+ output_dir="outputs",
273
+ report_to="none",
274
+ ),
275
+ )
276
+
277
+ #@title 現在のメモリ使用量を表示
278
+ gpu_stats = torch.cuda.get_device_properties(0)
279
+ start_gpu_memory = round(torch.cuda.max_memory_reserved() / 1024 / 1024 / 1024, 3)
280
+ max_memory = round(gpu_stats.total_memory / 1024 / 1024 / 1024, 3)
281
+ print(f"GPU = {gpu_stats.name}. Max memory = {max_memory} GB.")
282
+ print(f"{start_gpu_memory} GB of memory reserved.")
283
+
284
+ #@title 学習実行
285
+ trainer_stats = trainer.train()
286
+
287
+ # ELYZA-tasks-100-TVの読み込み。事前にファイルをアップロードしてください
288
+ # データセットの読み込み。
289
+ # omnicampusの開発環境では、左にタスクのjsonlをドラッグアンドドロップしてから実行。
290
+ import json
291
+ datasets = []
292
+ with open("./elyza-tasks-100-TV_0.jsonl", "r") as f:
293
+ item = ""
294
+ for line in f:
295
+ line = line.strip()
296
+ item += line
297
+ if item.endswith("}"):
298
+ datasets.append(json.loads(item))
299
+ item = ""
300
+
301
+ # 学習したモデルを用いてタスクを実行
302
+ from tqdm import tqdm
303
+
304
+ # 推論するためにモデルのモードを変更
305
+ FastLanguageModel.for_inference(model)
306
+
307
+ results = []
308
+ for dt in tqdm(datasets):
309
+ input = dt["input"]
310
+
311
+ prompt = f"""### 指示\n{input}\n### 回答\n"""
312
+
313
+ inputs = tokenizer([prompt], return_tensors = "pt").to(model.device)
314
+
315
+ outputs = model.generate(**inputs, max_new_tokens = 512, use_cache = True, do_sample=False, repetition_penalty=1.2)
316
+ prediction = tokenizer.decode(outputs[0], skip_special_tokens=True).split('\n### 回答')[-1]
317
+
318
+ results.append({"task_id": dt["task_id"], "input": input, "output": prediction})
319
+
320
+ import os
321
+ import json
322
+
323
+ # ファイル名を指定
324
+ new_model_id = "llm-jp/llm-jp-3-13b-it"
325
+ file_path = f"{new_model_id}_output.jsonl"
326
+
327
+ # 必要なディレクトリを作成
328
+ os.makedirs(os.path.dirname(file_path), exist_ok=True)
329
+
330
+ # jsonlで保存
331
+ with open(file_path, 'w', encoding='utf-8') as f:
332
+ for result in results:
333
+ json.dump(result, f, ensure_ascii=False)
334
+ f.write('\n')
335
+
336
+ !pip install --upgrade huggingface_hub
337
+
338
+
339
+ from huggingface_hub import HfApi
340
+ from requests.exceptions import HTTPError
341
+
342
+ new_model_id = "Mori-kamiyama/llm-jp-3-13b-it-241211"
343
+
344
+ # Hugging Face API を使用してリポジトリの存在確認
345
+ api = HfApi()
346
+ try:
347
+ repo_info = api.repo_info(repo_id=new_model_id+"_lora", token=HF_TOKEN)
348
+ print(f"Repository {new_model_id+'_lora'} already exists.")
349
+ except HTTPError as e:
350
+ if e.response.status_code == 404: # リポジトリが存在しない場合
351
+ print(f"Repository {new_model_id+'_lora'} does not exist. Proceeding to create it.")
352
+
353
+ # リポジトリを作成してアップロード
354
+ model.push_to_hub_merged(
355
+ new_model_id+"_lora",
356
+ tokenizer=tokenizer,
357
+ save_method="lora",
358
+ token=HF_TOKEN,
359
+ private=True
360
+ )
361
+ else:
362
+ print(f"An unexpected HTTP error occurred: {e}")
363
+ raise
364
+ ```