tokushi commited on
Commit
3005693
·
verified ·
1 Parent(s): 4020c12

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +85 -0
README.md CHANGED
@@ -20,3 +20,88 @@ 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
+
25
+ 本コードはunslothで学習したqLoRAのアダプタを用いてELYZA-tasks-100-TVの出力を得るためのコードです。
26
+ Hugging Faceにアダプタをアップロードしてあることが前提となります。 このコードはunslothライブラリを用いてモデルを読み込み、推論するためのコードとなります。 このコードで生成されたjsonlファイルは課題の成果として提出可能なフォーマットになっております。
27
+
28
+ ※本コードはGoogle Colabでの動作を想定しており、Omnicampusでの動作を想定しておりません。 Omnicampus向けのコードは別途用意しております。
29
+
30
+ # 必要なライブラリをインストール
31
+ %%capture
32
+ !pip install unsloth
33
+ !pip uninstall unsloth -y && pip install --upgrade --no-cache-dir "unsloth[colab-new] @ git+https://github.com/unslothai/unsloth.git"
34
+ !pip install -U torch
35
+ !pip install -U peft
36
+
37
+ # 必要なライブラリを読み込み
38
+ from unsloth import FastLanguageModel
39
+ from peft import PeftModel
40
+ import torch
41
+ import json
42
+ from tqdm import tqdm
43
+ import re
44
+
45
+ # ベースとなるモデルと学習したLoRAのアダプタ(Hugging FaceのIDを指定)。
46
+ model_id = "llm-jp/llm-jp-3-13b"
47
+ adapter_id = "tokushi"
48
+
49
+ # Hugging Face Token を指定。
50
+ # 下記の URL から Hugging Face Token を取得できますので下記の HF_TOKEN に入れてください。
51
+ # https://huggingface.co/settings/tokens
52
+ HF_TOKEN = "Hugging Face Tokenを入力"
53
+
54
+ # unslothのFastLanguageModelで元のモデルをロード。
55
+ dtype = None # Noneにしておけば自動で設定
56
+ load_in_4bit = True # 今回は13Bモデルを扱うためTrue
57
+
58
+ model, tokenizer = FastLanguageModel.from_pretrained(
59
+ model_name=model_id,
60
+ dtype=dtype,
61
+ load_in_4bit=load_in_4bit,
62
+ trust_remote_code=True,
63
+ )
64
+
65
+ adapter_id = "tokushi/llm-jp-3-13b-it_lora"
66
+
67
+ # 元のモデルにLoRAのアダプタを統合。
68
+ model = PeftModel.from_pretrained(model, adapter_id, token = HF_TOKEN)
69
+
70
+ # タスクとなるデータの読み込み。
71
+ # 事前にデータをアップロードしてください。
72
+ datasets = []
73
+ with open("/content/elyza-tasks-100-TV_0.jsonl", "r") as f:
74
+ item = ""
75
+ for line in f:
76
+ line = line.strip()
77
+ item += line
78
+ if item.endswith("}"):
79
+ datasets.append(json.loads(item))
80
+ item = ""
81
+
82
+ # モデルを用いてタスクの推論。
83
+
84
+ # 推論するためにモデルのモードを変更
85
+ FastLanguageModel.for_inference(model)
86
+
87
+ results = []
88
+ for dt in tqdm(datasets):
89
+ input = dt["input"]
90
+
91
+ prompt = f"""### 指示\n{input}\n### 回答\n"""
92
+
93
+ inputs = tokenizer([prompt], return_tensors = "pt").to(model.device)
94
+
95
+ outputs = model.generate(**inputs, max_new_tokens = 512, use_cache = True, do_sample=False, repetition_penalty=1.2)
96
+ prediction = tokenizer.decode(outputs[0], skip_special_tokens=True).split('\n### 回答')[-1]
97
+
98
+ results.append({"task_id": dt["task_id"], "input": input, "output": prediction})
99
+
100
+ # 結果をjsonlで保存。
101
+
102
+ # ここではadapter_idを元にファイル名を決定しているが、ファイル名は任意で問題なし。
103
+ json_file_id = re.sub(".*/", "", adapter_id)
104
+ with open(f"/content/{json_file_id}_output.jsonl", 'w', encoding='utf-8') as f:
105
+ for result in results:
106
+ json.dump(result, f, ensure_ascii=False)
107
+ f.write('\n')