creambun commited on
Commit
7907b9e
1 Parent(s): 0131b09

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +81 -0
README.md CHANGED
@@ -9,6 +9,7 @@ tags:
9
  license: apache-2.0
10
  language:
11
  - en
 
12
  ---
13
 
14
  # Uploaded model
@@ -20,3 +21,83 @@ 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
+ - ja
13
  ---
14
 
15
  # Uploaded model
 
21
  This llama model was trained 2x faster with [Unsloth](https://github.com/unslothai/unsloth) and Huggingface's TRL library.
22
 
23
  [<img src="https://raw.githubusercontent.com/unslothai/unsloth/main/images/unsloth%20made%20with%20love.png" width="200"/>](https://github.com/unslothai/unsloth)
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 = ""
48
+
49
+ # Hugging Face Token を指定。
50
+ HF_TOKEN = ""
51
+
52
+ # unslothのFastLanguageModelで元のモデルをロード。
53
+ dtype = None # Noneにしておけば自動で設定
54
+ load_in_4bit = True # 今回は13Bモデルを扱うためTrue
55
+
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=True,
61
+ )
62
+
63
+ # 元のモデルにLoRAのアダプタを統合。
64
+ model = PeftModel.from_pretrained(model, adapter_id, token = HF_TOKEN)
65
+
66
+ # タスクとなるデータの読み込み。
67
+ # 事前にデータをアップロードしてください。
68
+ datasets = []
69
+ with open("./elyza-tasks-100-TV_0.jsonl", "r") as f:
70
+ item = ""
71
+ for line in f:
72
+ line = line.strip()
73
+ item += line
74
+ if item.endswith("}"):
75
+ datasets.append(json.loads(item))
76
+ item = ""
77
+
78
+ # モデルを用いてタスクの推論。
79
+
80
+ # 推論するためにモデルのモードを変更
81
+ FastLanguageModel.for_inference(model)
82
+
83
+ results = []
84
+ for dt in tqdm(datasets):
85
+ input = dt["input"]
86
+
87
+ prompt = f"""### 指示\n{input}\n### 回答\n"""
88
+
89
+ inputs = tokenizer([prompt], return_tensors = "pt").to(model.device)
90
+
91
+ outputs = model.generate(**inputs, max_new_tokens = 512, use_cache = True, do_sample=False, repetition_penalty=1.2)
92
+ prediction = tokenizer.decode(outputs[0], skip_special_tokens=True).split('\n### 回答')[-1]
93
+
94
+ results.append({"task_id": dt["task_id"], "input": input, "output": prediction})
95
+
96
+ # 結果をjsonlで保存。
97
+
98
+ # ここではadapter_idを元にファイル名を決定しているが、ファイル名は任意で問題なし。
99
+ json_file_id = re.sub(".*/", "", adapter_id)
100
+ with open(f"/content/{json_file_id}_output.jsonl", 'w', encoding='utf-8') as f:
101
+ for result in results:
102
+ json.dump(result, f, ensure_ascii=False)
103
+ f.write('\n')