RAYU555 commited on
Commit
488690a
1 Parent(s): f3dc73b

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +92 -3
README.md CHANGED
@@ -6,17 +6,106 @@ tags:
6
  - unsloth
7
  - llama
8
  - trl
9
- license: apache-2.0
 
 
10
  language:
11
  - en
12
  ---
13
-
14
  # Uploaded model
15
 
16
  - **Developed by:** RAYU555
17
- - **License:** apache-2.0
18
  - **Finetuned from model :** llm-jp/llm-jp-3-13b
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)
 
 
 
 
 
 
 
 
6
  - unsloth
7
  - llama
8
  - trl
9
+ license:
10
+ - apache-2.0
11
+ - cc-by-sa-4.0
12
  language:
13
  - en
14
  ---
 
15
  # Uploaded model
16
 
17
  - **Developed by:** RAYU555
18
+ - **License:** apache-2.0 cc-by-sa-4.0
19
  - **Finetuned from model :** llm-jp/llm-jp-3-13b
20
 
21
+ # 出力方法
22
+
23
+ 下記のコードをgoogle colabratory上で実行してください。
24
+
25
+ (推論対象のファイルパスとHuggingFaceのトークンをコード内に記述していただく必要があります。)
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 = "llm-jp/llm-jp-3-13b"
44
+ adapter_id = "llm-jp-3-13b-it-last"
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
+
59
+ # 元のモデルにLoRAのアダプタを統合。
60
+ model = PeftModel.from_pretrained(model, adapter_id, token = HF_TOKEN)
61
+
62
+ # タスクとなるデータの読み込み。
63
+ # 事前にデータをアップロードしてください。
64
+ datasets = []
65
+ with open("./elyza-tasks-100-TV_0.jsonl", "r") as f:
66
+ item = ""
67
+ for line in f:
68
+ line = line.strip()
69
+ item += line
70
+ if item.endswith("}"):
71
+ datasets.append(json.loads(item))
72
+ item = ""
73
+
74
+ # モデルを用いてタスクの推論。
75
+
76
+ # 推論するためにモデルのモードを変更
77
+ FastLanguageModel.for_inference(model)
78
+
79
+ results = []
80
+ for dt in tqdm(datasets):
81
+ input = dt["input"]
82
+
83
+ prompt = f"""### 指示\n{input}\n### 回答\n"""
84
+
85
+ inputs = tokenizer([prompt], return_tensors = "pt").to(model.device)
86
+
87
+ outputs = model.generate(**inputs, max_new_tokens = 512, use_cache = True, do_sample=False, repetition_penalty=1.2)
88
+ prediction = tokenizer.decode(outputs[0], skip_special_tokens=True).split('\n### 回答')[-1]
89
+
90
+ results.append({"task_id": dt["task_id"], "input": input, "output": prediction})
91
+
92
+ # 結果をjsonlで保存。
93
+
94
+ # ここではadapter_idを元にファイル名を決定しているが、ファイル名は任意で問題なし。
95
+ json_file_id = re.sub(".*/", "", adapter_id)
96
+ with open(f"/content/{json_file_id}_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')
100
+ ```
101
+
102
  This llama model was trained 2x faster with [Unsloth](https://github.com/unslothai/unsloth) and Huggingface's TRL library.
103
 
104
  [<img src="https://raw.githubusercontent.com/unslothai/unsloth/main/images/unsloth%20made%20with%20love.png" width="200"/>](https://github.com/unslothai/unsloth)
105
+
106
+
107
+ Used [ELYZA-tasks-100](https://huggingface.co/datasets/elyza/ELYZA-tasks-100) for fineturning.
108
+
109
+
110
+ ELYZA-tasks-100: 日本語instructionモデル評価データセット © 2023 Akira Sasaki and Masato Hirakawa and Shintaro Horie and Tomoaki Nakamura ([CC BY-SA 4.0](https://creativecommons.org/licenses/by-sa/4.0/)
111
+ )