swampbottom6 commited on
Commit
e543916
·
verified ·
1 Parent(s): 531812a

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +78 -0
README.md CHANGED
@@ -20,3 +20,81 @@ 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
+ # Sample Use
26
+
27
+ 以下は、elyza-tasks-100-TV_0.jsonlの回答のためのコードです。
28
+
29
+ '''python
30
+ # 必要なライブラリを読み込み
31
+ from unsloth import FastLanguageModel
32
+ from peft import PeftModel
33
+ import torch
34
+ import json
35
+ from tqdm import tqdm
36
+ import re
37
+
38
+ # ベースとなるモデルと学習したLoRAのアダプタ(Hugging FaceのIDを指定)。
39
+ model_id = "llm-jp/llm-jp-3-13b"
40
+ adapter_id = "swampbottom6/llm-jp-3-13b-it_lora"
41
+
42
+ # Hugging Face Token を指定。
43
+ # 下記の URL から Hugging Face Token を取得できますので下記の HF_TOKEN に入れてください。
44
+ # https://huggingface.co/settings/tokens
45
+ HF_TOKEN = "{your-token}" #@param {type:"string"}
46
+
47
+ # unslothのFastLanguageModelで元のモデルをロード。
48
+ dtype = None # Noneにしておけば自動で設定
49
+ load_in_4bit = True # 今回は13Bモデルを扱うためTrue
50
+
51
+ model, tokenizer = FastLanguageModel.from_pretrained(
52
+ model_name=model_id,
53
+ dtype=dtype,
54
+ load_in_4bit=load_in_4bit,
55
+ trust_remote_code=True,
56
+ )
57
+
58
+ # 元のモデルにLoRAのアダプタを統合。
59
+ model = PeftModel.from_pretrained(model, adapter_id, token = HF_TOKEN)
60
+
61
+ # タスクとなるデータの読み込み。
62
+ # 事前にデータをアップロードしてください。
63
+ datasets = []
64
+ with open("/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
+ # 結果をjsonlで保存。
92
+
93
+ # ここではadapter_idを元にファイル名を決定しているが、ファイル名は任意で問題なし。
94
+ json_file_id = re.sub(".*/", "", adapter_id)
95
+ with open(f"/content/{json_file_id}_output.jsonl", 'w', encoding='utf-8') as f:
96
+ for result in results:
97
+ json.dump(result, f, ensure_ascii=False)
98
+ f.write('\n')
99
+
100
+ '''