iishiken commited on
Commit
2dbe575
·
verified ·
1 Parent(s): ab87675

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +77 -0
README.md CHANGED
@@ -20,3 +20,80 @@ tags:
20
  This gemma2 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 gemma2 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
+ #sample use
26
+
27
+ # 必要なライブラリをインストール
28
+ %%capture
29
+ !pip install unsloth
30
+ !pip uninstall unsloth -y && pip install --upgrade --no-cache-dir "unsloth[colab-new] @ git+https://github.com/unslothai/unsloth.git"
31
+ !pip install -U torch
32
+ !pip install -U peft
33
+
34
+ # 必要なライブラリを読み込み
35
+ from unsloth import FastLanguageModel
36
+ from peft import PeftModel
37
+ import torch
38
+ import json
39
+ from tqdm import tqdm
40
+ import re
41
+
42
+ # ベースとなるモデルと学習したLoRAのアダプタ(Hugging FaceのIDを指定)。
43
+ model_id = "google/gemma-2-27b"
44
+ adapter_id = "iishiken/gemma2-27bit_lora"
45
+
46
+ HF_TOKEN = "your_token"
47
+
48
+ # unslothのFastLanguageModelで元のモデルをロード。
49
+ dtype = None # Noneにしておけば自動で設定
50
+ load_in_4bit = True # 今回は13Bモデルを扱うためTrue
51
+
52
+ model, tokenizer = FastLanguageModel.from_pretrained(
53
+ model_name=model_id,
54
+ dtype=dtype,
55
+ load_in_4bit=load_in_4bit,
56
+ trust_remote_code=True,
57
+
58
+ # 元のモデルにLoRAのアダプタを統合。
59
+ model = PeftModel.from_pretrained(model, adapter_id, token = HF_TOKEN)
60
+
61
+ # タスクとなるデータの読み込み。
62
+ # 事前にデータをアップロードしてください。
63
+ datasets = []
64
+ with open("/home/user/LLM勉強コード/LLM2024_最終課題/elyza-tasks-100-TV_0.jsonl", "r") as f:
65
+ item = ""
66
+ for line in f:
67
+ line = line.strip()
68
+ item += line
69
+ if item.endswith("}"):
70
+ datasets.append(json.loads(item))
71
+ item = ""
72
+
73
+ # モデルを用いてタスクの推論。
74
+
75
+ # 推論するためにモデルのモードを変更
76
+ FastLanguageModel.for_inference(model)
77
+
78
+ results = []
79
+ for dt in tqdm(datasets):
80
+ input = dt["input"]
81
+
82
+ prompt = f"""### 指示\n{input}\n### 回答\n"""
83
+
84
+ inputs = tokenizer([prompt], return_tensors = "pt").to(model.device)
85
+
86
+ outputs = model.generate(**inputs, max_new_tokens = 512, use_cache = True, do_sample=False, repetition_penalty=1.2)
87
+ prediction = tokenizer.decode(outputs[0], skip_special_tokens=True).split('\n### 回答')[-1]
88
+
89
+ results.append({"task_id": dt["task_id"], "input": input, "output": prediction})
90
+
91
+
92
+ # 結果をjsonlで保存。
93
+
94
+ # ここではadapter_idを元にファイル名を決定しているが、ファイル名は任意で問題なし。
95
+ # json_file_id = re.sub(".*/","", adapter_id)
96
+ with open("gemmaBIT_output.jsonl", 'w', encoding='utf-8') as f:
97
+ for result in results:
98
+ json.dump(result, f, ensure_ascii=False)
99
+ f.write('\n')