Guchyos commited on
Commit
637f490
·
verified ·
1 Parent(s): e90933e

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +77 -0
README.md CHANGED
@@ -20,3 +20,80 @@ 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
+ ### How to use
25
+
26
+ ```bash
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
+ ```python
36
+ # 必要なライブラリを読み込み
37
+ from unsloth import FastLanguageModel
38
+ from peft import PeftModel
39
+ import torch
40
+ import json
41
+ from tqdm import tqdm
42
+ import re
43
+ # ベースとなるモデルと学習したLoRAのアダプタ(Hugging FaceのIDを指定)。
44
+ model_id = "llm-jp/llm-jp-3-13b"
45
+ adapter_id = "Guchyos/llm-jp-3-13b-it_lora_hyper_1"
46
+ # Hugging Face Token を指定。
47
+ # 下記の URL から Hugging Face Token を取得できますので下記の HF_TOKEN に入れてください。
48
+ # https://huggingface.co/settings/tokens
49
+ HF_TOKEN = "YourToken"
50
+ # unslothのFastLanguageModelで元のモデルをロード。
51
+ dtype = None # Noneにしておけば自動で設定
52
+ load_in_4bit = True # 今回は13Bモデルを扱うためTrue
53
+
54
+ model, tokenizer = FastLanguageModel.from_pretrained(
55
+ model_name=model_id,
56
+ dtype=dtype,
57
+ load_in_4bit=load_in_4bit,
58
+ trust_remote_code=True,
59
+ )
60
+ # 元のモデルにLoRAのアダプタを統合。
61
+ model = PeftModel.from_pretrained(model, adapter_id, token = HF_TOKEN)
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
+ 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
+ ```