Hitsuji24 commited on
Commit
e0b1d2a
·
verified ·
1 Parent(s): 02c0c38

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +234 -0
README.md CHANGED
@@ -20,3 +20,237 @@ 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
+
26
+ # llm-jp/llm-jp-3-13bを4bit量子化のqLoRA設定でロード。
27
+
28
+ from transformers import AutoModelForCausalLM, AutoTokenizer, BitsAndBytesConfig
29
+ from unsloth import FastLanguageModel
30
+ import torch
31
+ max_seq_length = 512 # unslothではRoPEをサポートしているのでコンテキスト長は自由に設定可能
32
+ dtype = None # Noneにしておけば自動で設定
33
+ load_in_4bit = True # 今回は8Bクラスのモデルを扱うためTrue
34
+
35
+ model_id = "llm-jp/llm-jp-3-13b"
36
+ new_model_id = "llm-jp-3-13b-finetune-2" #Fine-Tuningしたモデルにつけたい名前
37
+ # FastLanguageModel インスタンスを作成
38
+ model, tokenizer = FastLanguageModel.from_pretrained(
39
+ model_name=model_id,
40
+ dtype=dtype,
41
+ load_in_4bit=load_in_4bit,
42
+ trust_remote_code=True,
43
+ )
44
+
45
+ # SFT用のモデルを用意
46
+ model = FastLanguageModel.get_peft_model(
47
+ model,
48
+ r = 32,
49
+ target_modules = ["q_proj", "k_proj", "v_proj", "o_proj",
50
+ "gate_proj", "up_proj", "down_proj",],
51
+ lora_alpha = 32,
52
+ lora_dropout = 0.05,
53
+ bias = "none",
54
+ use_gradient_checkpointing = "unsloth",
55
+ random_state = 3407,
56
+ use_rslora = False,
57
+ loftq_config = None,
58
+ max_seq_length = max_seq_length,
59
+ )
60
+
61
+ # Hugging Face Token を指定
62
+ HF_TOKEN = "your-token"
63
+
64
+ # 学習に用いるデータセットの指定
65
+ from datasets import load_dataset
66
+
67
+ dataset = load_dataset("json", data_files="/content/ichikara-instruction-003-001-1.json")
68
+
69
+ from google.colab import drive
70
+ drive.mount('/content/drive')
71
+
72
+ # 学習時のプロンプトフォーマットの定義
73
+ prompt = """### 指示
74
+ {}
75
+ ### 回答
76
+ {}"""
77
+
78
+
79
+
80
+ """
81
+ formatting_prompts_func: 各データをプロンプトに合わせた形式に合わせる
82
+ """
83
+ EOS_TOKEN = tokenizer.eos_token # トークナイザーのEOSトークン(文末トークン)
84
+ def formatting_prompts_func(examples):
85
+ input = examples["text"] # 入力データ
86
+ output = examples["output"] # 出力データ
87
+ text = prompt.format(input, output) + EOS_TOKEN # プロンプトの作成
88
+ return { "formatted_text" : text, } # 新しいフィールド "formatted_text" を返す
89
+ pass
90
+
91
+ # # 各データにフォーマットを適用
92
+ dataset = dataset.map(
93
+ formatting_prompts_func,
94
+ num_proc= 4, # 並列処理数を指定
95
+ )
96
+
97
+ dataset
98
+
99
+ # データを確認
100
+ print(dataset["train"]["formatted_text"][3])
101
+
102
+ """
103
+ training_arguments: 学習の設定
104
+
105
+ - output_dir:
106
+ -トレーニング後のモデルを保存するディレクトリ
107
+
108
+ - per_device_train_batch_size:
109
+ - デバイスごとのトレーニングバッチサイズ
110
+
111
+ - per_device_eval_batch_size:
112
+ - デバイスごとの評価バッチサイズ
113
+
114
+ - gradient_accumulation_steps:
115
+ - 勾配を更新する前にステップを積み重ねる回数
116
+
117
+ - optim:
118
+ - オプティマイザの設定
119
+
120
+ - num_train_epochs:
121
+ - エポック数
122
+
123
+ - eval_strategy:
124
+ - 評価の戦略 ("no"/"steps"/"epoch")
125
+
126
+ - eval_steps:
127
+ - eval_strategyが"steps"のとき、評価を行うstep間隔
128
+
129
+ - logging_strategy:
130
+ - ログ記録の戦略
131
+
132
+ - logging_steps:
133
+ - ログを出力するステップ間隔
134
+
135
+ - warmup_steps:
136
+ - 学習率のウォームアップステップ数
137
+
138
+ - save_steps:
139
+ - モデルを保存するステップ間隔
140
+
141
+ - save_total_limit:
142
+ - 保存しておくcheckpointの数
143
+
144
+ - max_steps:
145
+ - トレーニングの最大ステップ数
146
+
147
+ - learning_rate:
148
+ - 学習率
149
+
150
+ - fp16:
151
+ - 16bit浮動小数点の使用設定(第8回演習を参考にすると良いです)
152
+
153
+ - bf16:
154
+ - BFloat16の使用設定
155
+
156
+ - group_by_length:
157
+ - 入力シーケンスの長さによりバッチをグループ化 (トレーニングの効率化)
158
+
159
+ - report_to:
160
+ - ログの送信先 ("wandb"/"tensorboard"など)
161
+ """
162
+ from trl import SFTTrainer
163
+ from transformers import TrainingArguments
164
+ from unsloth import is_bfloat16_supported
165
+
166
+ trainer = SFTTrainer(
167
+ model = model,
168
+ tokenizer = tokenizer,
169
+ train_dataset=dataset["train"],
170
+ max_seq_length = max_seq_length,
171
+ dataset_text_field="formatted_text",
172
+ packing = False,
173
+ args = TrainingArguments(
174
+ per_device_train_batch_size = 2,
175
+ gradient_accumulation_steps = 4,
176
+ num_train_epochs = 1,
177
+ logging_steps = 10,
178
+ warmup_steps = 10,
179
+ save_steps=100,
180
+ save_total_limit=2,
181
+ max_steps=-1,
182
+ learning_rate = 2e-4,
183
+ fp16 = not is_bfloat16_supported(),
184
+ bf16 = is_bfloat16_supported(),
185
+ group_by_length=True,
186
+ seed = 3407,
187
+ output_dir = "outputs",
188
+ report_to = "none",
189
+ ),
190
+ )
191
+
192
+
193
+ #@title 現在のメモリ使用量を表示
194
+ gpu_stats = torch.cuda.get_device_properties(0)
195
+ start_gpu_memory = round(torch.cuda.max_memory_reserved() / 1024 / 1024 / 1024, 3)
196
+ max_memory = round(gpu_stats.total_memory / 1024 / 1024 / 1024, 3)
197
+ print(f"GPU = {gpu_stats.name}. Max memory = {max_memory} GB.")
198
+ print(f"{start_gpu_memory} GB of memory reserved.")
199
+
200
+
201
+ #@title 学習実行
202
+ trainer_stats = trainer.train()
203
+
204
+
205
+ # ELYZA-tasks-100-TVの読み込み。事前にファイルをアップロードしてください
206
+ # データセットの読み込み。
207
+ # omnicampusの開発環境では、左にタスクのjsonlをドラッグアンドドロップしてから実行。
208
+ import json
209
+ datasets = []
210
+ with open("/content/elyza-tasks-100-TV_0.jsonl", "r") as f:
211
+ item = ""
212
+ for line in f:
213
+ line = line.strip()
214
+ item += line
215
+ if item.endswith("}"):
216
+ datasets.append(json.loads(item))
217
+ item = ""
218
+
219
+ # 学習したモデルを用いてタスクを実行
220
+ from tqdm import tqdm
221
+
222
+ # 推論するためにモデルのモードを変更
223
+ FastLanguageModel.for_inference(model)
224
+
225
+ results = []
226
+ for dt in tqdm(datasets):
227
+ input = dt["input"]
228
+
229
+ prompt = f"""### 指示\n{input}\n### 回答\n"""
230
+
231
+ inputs = tokenizer([prompt], return_tensors = "pt").to(model.device)
232
+
233
+ outputs = model.generate(**inputs, max_new_tokens = 512, use_cache = True, do_sample=False, repetition_penalty=1.2)
234
+ prediction = tokenizer.decode(outputs[0], skip_special_tokens=True).split('\n### 回答')[-1]
235
+
236
+ results.append({"task_id": dt["task_id"], "input": input, "output": prediction})
237
+
238
+
239
+
240
+ # jsonlで保存
241
+ with open(f"{new_model_id}_output.jsonl", 'w', encoding='utf-8') as f:
242
+ for result in results:
243
+ json.dump(result, f, ensure_ascii=False)
244
+ f.write('\n')
245
+
246
+ # モデルとトークナイザーをHugging Faceにアップロード。
247
+ model.push_to_hub_merged(
248
+ new_model_id,
249
+ tokenizer=tokenizer,
250
+ save_method="lora",
251
+ token=HF_TOKEN,
252
+ private=True
253
+ )
254
+
255
+
256
+ ```