Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,414 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
library_name: transformers
|
3 |
tags: []
|
|
|
1 |
+
#推論用コード
|
2 |
+
# llmjp
|
3 |
+
results = []
|
4 |
+
for data in tqdm(datasets):
|
5 |
+
|
6 |
+
input = data["input"]
|
7 |
+
|
8 |
+
prompt = f"""### 指示
|
9 |
+
{input}
|
10 |
+
### 回答
|
11 |
+
"""
|
12 |
+
|
13 |
+
tokenized_input = tokenizer.encode(prompt, add_special_tokens=False, return_tensors="pt").to(model.device)
|
14 |
+
attention_mask = torch.ones_like(tokenized_input)
|
15 |
+
with torch.no_grad():
|
16 |
+
outputs = model.generate(
|
17 |
+
tokenized_input,
|
18 |
+
attention_mask=attention_mask,
|
19 |
+
max_new_tokens=100,
|
20 |
+
do_sample=False,
|
21 |
+
repetition_penalty=1.2,
|
22 |
+
pad_token_id=tokenizer.eos_token_id
|
23 |
+
)[0]
|
24 |
+
output = tokenizer.decode(outputs[tokenized_input.size(1):], skip_special_tokens=True)
|
25 |
+
|
26 |
+
results.append({"task_id": data["task_id"], "input": input, "output": output})
|
27 |
+
|
28 |
+
|
29 |
+
|
30 |
+
|
31 |
+
|
32 |
+
|
33 |
+
#sampul use
|
34 |
+
# python 3.10.12
|
35 |
+
!pip install -U pip
|
36 |
+
!pip install -U transformers
|
37 |
+
!pip install -U bitsandbytes
|
38 |
+
!pip install -U accelerate
|
39 |
+
!pip install -U datasets
|
40 |
+
!pip install -U peft
|
41 |
+
!pip install -U trl
|
42 |
+
!pip install -U wandb
|
43 |
+
!pip install ipywidgets --upgrade
|
44 |
+
|
45 |
+
from transformers import (
|
46 |
+
AutoModelForCausalLM,
|
47 |
+
AutoTokenizer,
|
48 |
+
BitsAndBytesConfig,
|
49 |
+
TrainingArguments,
|
50 |
+
logging,
|
51 |
+
)
|
52 |
+
from peft import (
|
53 |
+
LoraConfig,
|
54 |
+
PeftModel,
|
55 |
+
get_peft_model,
|
56 |
+
)
|
57 |
+
import os, torch, gc
|
58 |
+
from datasets import load_dataset
|
59 |
+
import bitsandbytes as bnb
|
60 |
+
from trl import SFTTrainer
|
61 |
+
|
62 |
+
# モデルを読み込み。
|
63 |
+
# llm-jp-3 1.8B, 3.7B, 13Bのsnapshotをダウンロード済みでmodelsディレクトリに格納してあります。
|
64 |
+
# base_model_idの値はomnicampusの環境におけるモデルのパスを表しており、それ以外の環境で実行する場合は変更の必要があります。
|
65 |
+
# その他のモデルは取得に承諾が必要なため、各自でダウンロードお願いします。
|
66 |
+
base_model_id = "models/models--llm-jp--llm-jp-3-13b/snapshots/cd3823f4c1fcbb0ad2e2af46036ab1b0ca13192a" #Fine-Tuningするベースモデル
|
67 |
+
# omnicampus以外の環境をご利用の方は以下をご利用ください。
|
68 |
+
# base_model_id = "llm-jp/llm-jp-3-13b"
|
69 |
+
new_model_id = "llm-jp-3-13b-finetune" #Fine-Tuningしたモデルにつけたい名前
|
70 |
+
|
71 |
+
"""
|
72 |
+
model: モデル
|
73 |
+
|
74 |
+
- base_model:
|
75 |
+
- 読み込むベースモデル (事前に定義したもの)
|
76 |
+
|
77 |
+
- quantization_config:
|
78 |
+
- bnb_configで設定した量子化設定
|
79 |
+
|
80 |
+
- device_map:
|
81 |
+
- モデルを割り当てるデバイス (CPU/GPU) "auto"で自動に割り当てられます。
|
82 |
+
|
83 |
+
tokenizer: トークナイザー
|
84 |
+
|
85 |
+
- base_model:
|
86 |
+
- 読み込むベースモデル (事前に定義したもの)
|
87 |
+
|
88 |
+
- trust_remote_code:
|
89 |
+
- リモートコードの実行を許可 (カスタムモデルなど)
|
90 |
+
"""
|
91 |
+
model = AutoModelForCausalLM.from_pretrained(
|
92 |
+
base_model_id,
|
93 |
+
quantization_config=bnb_config,
|
94 |
+
device_map="auto"
|
95 |
+
)
|
96 |
+
|
97 |
+
tokenizer = AutoTokenizer.from_pretrained(base_model_id, trust_remote_code=True)
|
98 |
+
|
99 |
+
"""
|
100 |
+
bnb_config: 量子化の設定
|
101 |
+
|
102 |
+
- load_in_4bit:
|
103 |
+
- 4bit量子化形式でモデルをロード
|
104 |
+
|
105 |
+
- bnb_4bit_quant_type:
|
106 |
+
- 量子化の形式を指定
|
107 |
+
|
108 |
+
- bnb_4bit_compute_dtype:
|
109 |
+
- 量子化された重みを用いて計算する際のデータ型
|
110 |
+
|
111 |
+
"""
|
112 |
+
|
113 |
+
bnb_config = BitsAndBytesConfig(
|
114 |
+
load_in_4bit=True,
|
115 |
+
bnb_4bit_quant_type="nf4", # nf4は通常のINT4より精度が高く、ニューラルネットワークの分布に最適です
|
116 |
+
bnb_4bit_compute_dtype=torch.bfloat16,
|
117 |
+
)
|
118 |
+
|
119 |
+
"""
|
120 |
+
find_all_linear_names: モデル内の4bit量子化線形層を探します。
|
121 |
+
"""
|
122 |
+
|
123 |
+
def find_all_linear_names(model):
|
124 |
+
cls = bnb.nn.Linear4bit # 4bit量子化線形層クラスを指定
|
125 |
+
lora_module_names = set() # ここに取得した線形層を保持します。
|
126 |
+
|
127 |
+
# モデル内の全てのモジュールを探索します
|
128 |
+
for name, module in model.named_modules():
|
129 |
+
if isinstance(module, cls): # モジュールが4bit量子化線形層の場合
|
130 |
+
names = name.split('.') # モジュールの名前を分割 (ネストされてる際などに対処)
|
131 |
+
lora_module_names.add(names[0] if len(names) == 1 else names[-1]) # 最下層の名前をlora_module_namesに追加
|
132 |
+
|
133 |
+
# 'lm_head' は16ビット演算の際に除外する必要があるため、lora_module_namesから削除
|
134 |
+
if 'lm_head' in lora_module_names:
|
135 |
+
lora_module_names.remove('lm_head')
|
136 |
+
|
137 |
+
return list(lora_module_names) # lora_module_namesをリストに変換して返します。
|
138 |
+
|
139 |
+
|
140 |
+
"""
|
141 |
+
peft_config: PEFTの構成設定
|
142 |
+
|
143 |
+
- r
|
144 |
+
- LoRA のランク (4, 8, 16 ,32...)
|
145 |
+
- 増やすほど学習が捗るが, 過学習のリスクも高まるので注意
|
146 |
+
|
147 |
+
- lora_alpha
|
148 |
+
- LoRAのスケーリング係数
|
149 |
+
|
150 |
+
- lora_dropout
|
151 |
+
- ドロップアウト率(過学習を防ぐための割合)
|
152 |
+
|
153 |
+
- bias
|
154 |
+
- バイアス項の扱い ("none"の場合、LoRAはバイアスを学習しない)
|
155 |
+
|
156 |
+
- task_type
|
157 |
+
- タスクタイプ
|
158 |
+
|
159 |
+
- target_modules
|
160 |
+
- LoRAを適用するターゲットモジュール (前のコードで特定した層)
|
161 |
+
"""
|
162 |
+
|
163 |
+
peft_config = LoraConfig(
|
164 |
+
r=16,
|
165 |
+
lora_alpha=32,
|
166 |
+
lora_dropout=0.05,
|
167 |
+
bias="none",
|
168 |
+
task_type="CAUSAL_LM",
|
169 |
+
target_modules=modules,
|
170 |
+
)
|
171 |
+
|
172 |
+
"""
|
173 |
+
学習に用いるデータセットの指定
|
174 |
+
今回はLLM-jp の公開している Ichikara Instruction を使います。データにアクセスするためには申請が必要ですので、使いたい方のみ申請をしてください。
|
175 |
+
Ichikara Instruciton を Hugging Face Hub にて公開することはお控えください。
|
176 |
+
また、CC-BY-NC-SAですのでモデルはライセンスを継承する前提でお使いください。
|
177 |
+
|
178 |
+
下記のリンクから申請を終えた先に Google Drive があり、Distribution20241221_all というフォルダごとダウンロードしてください。
|
179 |
+
今回は「ichikara-instruction-003-001-1.json」を使います。必要であれば展開(!unzip など)し、データセットのパスを適切に指定してください。
|
180 |
+
omnicampusの開発環境では取得したデータを左側にドラッグアンドドロップしてお使いください。
|
181 |
+
|
182 |
+
https://liat-aip.sakura.ne.jp/wp/llmのための日本語インストラクションデータ作成/llmのための日本語インストラクションデータ-公開/
|
183 |
+
関根聡, 安藤まや, 後藤美知子, 鈴木久美, 河原大輔, 井之上直也, 乾健太郎. ichikara-instruction: LLMのための日本語インストラクションデータの構築. 言語処理学会第30回年次大会(2024)
|
184 |
+
|
185 |
+
"""
|
186 |
+
|
187 |
+
dataset = load_dataset("json", data_files="./ichikara-instruction-003-001-1.json")
|
188 |
+
dataset
|
189 |
+
|
190 |
+
# 学習時のプロンプトフォーマットの定義
|
191 |
+
prompt = """### 指示
|
192 |
+
{}
|
193 |
+
### 回答
|
194 |
+
{}"""
|
195 |
+
|
196 |
+
|
197 |
+
"""
|
198 |
+
formatting_prompts_func: 各データをプロンプトに合わせた形式に合わせる
|
199 |
+
"""
|
200 |
+
EOS_TOKEN = tokenizer.eos_token # トークナイザーのEOSトークン(文末トークン)
|
201 |
+
def formatting_prompts_func(examples):
|
202 |
+
input = examples["text"] # 入力データ
|
203 |
+
output = examples["output"] # 出力データ
|
204 |
+
text = prompt.format(input, output) + EOS_TOKEN # プロンプトの作成
|
205 |
+
return { "formatted_text" : text, } # 新しいフィールド "formatted_text" を返す
|
206 |
+
pass
|
207 |
+
|
208 |
+
# # 各データにフォーマットを適用
|
209 |
+
dataset = dataset.map(
|
210 |
+
formatting_prompts_func,
|
211 |
+
num_proc= 4, # 並列処理数を指定
|
212 |
+
)
|
213 |
+
|
214 |
+
dataset
|
215 |
+
|
216 |
+
# データを確認
|
217 |
+
print(dataset["train"]["formatted_text"][3])
|
218 |
+
|
219 |
+
# データをtrainデータとtestデータに分割 (test_sizeの比率に)
|
220 |
+
# dataset = dataset["train"].train_test_split(test_size=0.1)
|
221 |
+
# dataset
|
222 |
+
|
223 |
+
"""
|
224 |
+
training_arguments: 学習の設定
|
225 |
+
|
226 |
+
- output_dir:
|
227 |
+
-トレーニング後のモデルを保存するディレクトリ
|
228 |
+
|
229 |
+
- per_device_train_batch_size:
|
230 |
+
- デバイスごとのトレーニングバッチサイズ
|
231 |
+
|
232 |
+
- per_device_
|
233 |
+
_batch_size:
|
234 |
+
- デバイスごとの評価バッチサイズ
|
235 |
+
|
236 |
+
- gradient_accumulation_steps:
|
237 |
+
- 勾配を更新する前にステップを積み重ねる回数
|
238 |
+
|
239 |
+
- optim:
|
240 |
+
- オプティマイザの設定
|
241 |
+
|
242 |
+
- num_train_epochs:
|
243 |
+
- エポック数
|
244 |
+
|
245 |
+
- eval_strategy:
|
246 |
+
- 評価の戦略 ("no"/"steps"/"epoch")
|
247 |
+
|
248 |
+
- eval_steps:
|
249 |
+
- eval_strategyが"steps"のとき、評価を行うstep間隔
|
250 |
+
|
251 |
+
- logging_strategy:
|
252 |
+
- ログ記録の戦略
|
253 |
+
|
254 |
+
- logging_steps:
|
255 |
+
- ログを出力するステップ間隔
|
256 |
+
|
257 |
+
- warmup_steps:
|
258 |
+
- 学習率のウォームアップステップ数
|
259 |
+
|
260 |
+
- save_steps:
|
261 |
+
- モデルを保存するステップ間隔
|
262 |
+
|
263 |
+
- save_total_limit:
|
264 |
+
- 保存しておくcheckpointの数
|
265 |
+
|
266 |
+
- max_steps:
|
267 |
+
- トレーニングの最大ステップ数
|
268 |
+
|
269 |
+
- learning_rate:
|
270 |
+
- 学習率
|
271 |
+
|
272 |
+
- fp16:
|
273 |
+
- 16bit浮動小数点の使用設定(第8回演習を参考にすると良いです)
|
274 |
+
|
275 |
+
- bf16:
|
276 |
+
- BFloat16の使用設定
|
277 |
+
|
278 |
+
- group_by_length:
|
279 |
+
- 入力シーケンスの長さによりバッチをグループ化 (トレーニングの効率化)
|
280 |
+
|
281 |
+
- report_to:
|
282 |
+
- ログの送信先 ("wandb"/"tensorboard"など)
|
283 |
+
"""
|
284 |
+
|
285 |
+
training_arguments = TrainingArguments(
|
286 |
+
output_dir=new_model_id,
|
287 |
+
per_device_train_batch_size=1,
|
288 |
+
gradient_accumulation_steps=2,
|
289 |
+
optim="paged_adamw_32bit",
|
290 |
+
num_train_epochs=1,
|
291 |
+
logging_strategy="steps",
|
292 |
+
logging_steps=10,
|
293 |
+
warmup_steps=10,
|
294 |
+
save_steps=100,
|
295 |
+
save_total_limit = 2,
|
296 |
+
max_steps = -1,
|
297 |
+
learning_rate=5e-5,
|
298 |
+
fp16=False,
|
299 |
+
bf16=False,
|
300 |
+
seed = 3407,
|
301 |
+
group_by_length=True,
|
302 |
+
report_to="none"
|
303 |
+
)
|
304 |
+
|
305 |
+
"""
|
306 |
+
SFTTrainer: Supervised Fine-Tuningに関する設定
|
307 |
+
|
308 |
+
- model:
|
309 |
+
- 読み込んだベースのモデル
|
310 |
+
|
311 |
+
- train_dataset:
|
312 |
+
- トレーニングに使用するデータセット
|
313 |
+
|
314 |
+
- eval_dataset:
|
315 |
+
- 評価に使用するデータセット
|
316 |
+
|
317 |
+
- peft_config:
|
318 |
+
- PEFT(Parameter-Efficient Fine-Tuning)の設定(LoRAを利用する場合に指定)
|
319 |
+
|
320 |
+
- max_seq_length:
|
321 |
+
- モデルに入��されるシーケンスの最大トークン長
|
322 |
+
|
323 |
+
- dataset_text_field:
|
324 |
+
- データセット内の学習に使うテキストを含むフィールド名
|
325 |
+
|
326 |
+
- tokenizer:
|
327 |
+
- モデルに対応するトークナイザー
|
328 |
+
|
329 |
+
- args:
|
330 |
+
- トレーニングに使用するハイパーパラメータ(TrainingArgumentsの設定を指定)
|
331 |
+
|
332 |
+
- packing:
|
333 |
+
- 入力シーケンスのパッキングを行うかどうかの設定 (False に設定することで、各入力を独立して扱う)
|
334 |
+
"""
|
335 |
+
trainer = SFTTrainer(
|
336 |
+
model=model,
|
337 |
+
train_dataset=dataset["train"],
|
338 |
+
peft_config=peft_config,
|
339 |
+
max_seq_length= 512,
|
340 |
+
dataset_text_field="formatted_text",
|
341 |
+
tokenizer=tokenizer,
|
342 |
+
args=training_arguments,
|
343 |
+
packing= False,
|
344 |
+
)
|
345 |
+
|
346 |
+
model.config.use_cache = False # キャッシュ機能を無効化
|
347 |
+
trainer.train() # トレーニングを実行
|
348 |
+
|
349 |
+
# タスクとなるデータの読み込み。
|
350 |
+
# omnicampusの開発環境では、左にタスクのjsonlをドラッグアンドドロップしてから実行。
|
351 |
+
import json
|
352 |
+
datasets = []
|
353 |
+
with open("./elyza-tasks-100-TV_0.jsonl", "r") as f:
|
354 |
+
item = ""
|
355 |
+
for line in f:
|
356 |
+
line = line.strip()
|
357 |
+
item += line
|
358 |
+
if item.endswith("}"):
|
359 |
+
datasets.append(json.loads(item))
|
360 |
+
item = ""
|
361 |
+
|
362 |
+
# モデルによるタスクの推論。
|
363 |
+
from tqdm import tqdm
|
364 |
+
|
365 |
+
results = []
|
366 |
+
for data in tqdm(datasets):
|
367 |
+
|
368 |
+
input = data["input"]
|
369 |
+
|
370 |
+
prompt = f"""### 指示
|
371 |
+
{input}
|
372 |
+
### 回答
|
373 |
+
"""
|
374 |
+
|
375 |
+
tokenized_input = tokenizer.encode(prompt, add_special_tokens=False, return_tensors="pt").to(model.device)
|
376 |
+
attention_mask = torch.ones_like(tokenized_input)
|
377 |
+
|
378 |
+
with torch.no_grad():
|
379 |
+
outputs = model.generate(
|
380 |
+
tokenized_input,
|
381 |
+
attention_mask=attention_mask,
|
382 |
+
max_new_tokens=100,
|
383 |
+
do_sample=False,
|
384 |
+
repetition_penalty=1.2,
|
385 |
+
pad_token_id=tokenizer.eos_token_id
|
386 |
+
)[0]
|
387 |
+
output = tokenizer.decode(outputs[tokenized_input.size(1):], skip_special_tokens=True)
|
388 |
+
|
389 |
+
results.append({"task_id": data["task_id"], "input": input, "output": output})
|
390 |
+
|
391 |
+
|
392 |
+
# こちらで生成されたjsolを提出してください。
|
393 |
+
# 本コードではinputとeval_aspectも含んでいますが、なくても問題ありません。
|
394 |
+
# 必須なのはtask_idとoutputとなります。
|
395 |
+
import re
|
396 |
+
jsonl_id = re.sub(".*/", "", new_model_id)
|
397 |
+
with open(f"./{jsonl_id}-outputs.jsonl", 'w', encoding='utf-8') as f:
|
398 |
+
for result in results:
|
399 |
+
json.dump(result, f, ensure_ascii=False) # ensure_ascii=False for handling non-ASCII characters
|
400 |
+
f.write('\n')
|
401 |
+
|
402 |
+
# モデルとトークナイザーをHugging Faceにアップロード
|
403 |
+
model.push_to_hub(new_model_id, token=HF_TOKEN, private=True) # Online saving
|
404 |
+
tokenizer.push_to_hub(new_model_id, token=HF_TOKEN, private=True) # Online saving
|
405 |
+
|
406 |
+
|
407 |
+
|
408 |
+
|
409 |
+
|
410 |
+
model = get_peft_model(model, peft_config)
|
411 |
+
modules = find_all_linear_names(model)
|
412 |
---
|
413 |
library_name: transformers
|
414 |
tags: []
|