E2337000 commited on
Commit
08a9df0
1 Parent(s): b564c04

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +79 -1
README.md CHANGED
@@ -9,8 +9,86 @@ tags:
9
  license: apache-2.0
10
  language:
11
  - en
 
 
 
12
  ---
13
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  # Uploaded model
15
 
16
  - **Developed by:** E2337000
@@ -19,4 +97,4 @@ language:
19
 
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
+ datasets:
14
+ - elyza/ELYZA-tasks-100
15
  ---
16
 
17
+ elyza/ELYZA-tasks-100 (ELYZA-tasks-100-TV **ではない**)で llm-jp/llm-jp-3-13b をファインチューニングしたモデル
18
+
19
+ # How to Use
20
+ ```python
21
+ # 必要なライブラリを読み込み
22
+ from unsloth import FastLanguageModel
23
+ from peft import PeftModel
24
+ import torch
25
+ import json
26
+ from tqdm import tqdm
27
+ import re
28
+
29
+ # ベースとなるモデルと学習したLoRAのアダプタ(Hugging FaceのIDを指定)。
30
+ model_id = "llm-jp/llm-jp-3-13b"
31
+ adapter_id = "E2337000/llm-jp-3-13b-it-elyza_lora" #@param {type:"string"}
32
+
33
+ # Hugging Face Token を指定。
34
+ # 下記の URL から Hugging Face Token を取得できますので下記の HF_TOKEN に入れてください。
35
+ # https://huggingface.co/settings/tokens
36
+ HF_TOKEN = "YOUR TOKEN" #@param {type:"string"}
37
+
38
+ # unslothのFastLanguageModelで元のモデルをロード。
39
+ dtype = None # Noneにしておけば自動で設定
40
+ load_in_4bit = True # 今回は13Bモデルを扱うためTrue
41
+
42
+ model, tokenizer = FastLanguageModel.from_pretrained(
43
+ model_name=model_id,
44
+ dtype=dtype,
45
+ load_in_4bit=load_in_4bit,
46
+ trust_remote_code=True,
47
+ )
48
+
49
+ # 元のモデルにLoRAのアダプタを統合。
50
+ model = PeftModel.from_pretrained(model, adapter_id, token = HF_TOKEN)
51
+
52
+ # タスクとなるデータの読み込み。
53
+ # 事前にデータをアップロードしてください。
54
+ datasets = []
55
+ with open("./elyza-tasks-100-TV_0.jsonl", "r") as f:
56
+ item = ""
57
+ for line in f:
58
+ line = line.strip()
59
+ item += line
60
+ if item.endswith("}"):
61
+ datasets.append(json.loads(item))
62
+ item = ""
63
+
64
+ # モデルを用いてタスクの推論。
65
+
66
+ # 推論するためにモデルのモードを変更
67
+ FastLanguageModel.for_inference(model)
68
+
69
+ results = []
70
+ for dt in tqdm(datasets):
71
+ input = dt["input"]
72
+
73
+ prompt = f"""### 指示\n{input}\n### 回答\n"""
74
+
75
+ inputs = tokenizer([prompt], return_tensors = "pt").to(model.device)
76
+
77
+ outputs = model.generate(**inputs, max_new_tokens = 512, use_cache = True, do_sample=False, repetition_penalty=1.2)
78
+ prediction = tokenizer.decode(outputs[0], skip_special_tokens=True).split('\n### 回答')[-1]
79
+
80
+ results.append({"task_id": dt["task_id"], "input": input, "output": prediction})
81
+
82
+ # 結果をjsonlで保存。
83
+
84
+ # ここではadapter_idを元にファイル名を決定しているが、ファイル名は任意で問題なし。
85
+ json_file_id = re.sub(".*/", "", adapter_id)
86
+ with open(f"/content/{json_file_id}_output.jsonl", 'w', encoding='utf-8') as f:
87
+ for result in results:
88
+ json.dump(result, f, ensure_ascii=False)
89
+ f.write('\n')
90
+ ```
91
+
92
  # Uploaded model
93
 
94
  - **Developed by:** E2337000
 
97
 
98
  This llama model was trained 2x faster with [Unsloth](https://github.com/unslothai/unsloth) and Huggingface's TRL library.
99
 
100
+ [<img src="https://raw.githubusercontent.com/unslothai/unsloth/main/images/unsloth%20made%20with%20love.png" width="200"/>](https://github.com/unslothai/unsloth)