jackofayame commited on
Commit
5146d1b
·
verified ·
1 Parent(s): 43fd5c0

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +98 -15
README.md CHANGED
@@ -1,22 +1,105 @@
1
  ---
2
- base_model: llm-jp/llm-jp-3-13b
3
- tags:
4
- - text-generation-inference
5
- - transformers
6
- - unsloth
7
- - llama
8
- - trl
9
- license: apache-2.0
10
  language:
11
- - en
 
 
 
 
 
12
  ---
13
 
14
- # Uploaded model
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
15
 
16
- - **Developed by:** jackofayame
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)
 
 
 
 
 
 
 
1
  ---
 
 
 
 
 
 
 
 
2
  language:
3
+ - ja
4
+ - en
5
+ tags:
6
+ - llm
7
+ - question answering
8
+ - text generation
9
  ---
10
 
11
+ LLM-JP-3-13B ファインチューニングモデル
12
+
13
+ # モデル詳細
14
+
15
+ ベースモデル: llm-jp/llm-jp-3-13b
16
+ 量子化: 4ビット量子化 (QLoRA)
17
+
18
+
19
+ # 事前準備
20
+ Hugging Face Tokenを取得
21
+
22
+
23
+ # インストール
24
+ 必要なパッケージのインストール:
25
+
26
+ pip install unsloth
27
+ pip uninstall unsloth -y && pip install --upgrade --no-cache-dir "unsloth[colab-new] @ git+https://github.com/unslothai/unsloth.git"
28
+ pip install -U torch
29
+ pip install -U peft
30
+
31
+ # 使用方法
32
+ 以下は、モデルの基本的な使用例です:
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 = ""
45
+
46
+ # Hugging Face Token を指定。
47
+ # 下記の URL から Hugging Face Token を取得できますので下記の HF_TOKEN に入れてください。
48
+ # https://huggingface.co/settings/tokens
49
+ HF_TOKEN = "" #@param {type:"string"}
50
+
51
+ # unslothのFastLanguageModelで元のモデルをロード。
52
+ dtype = None # Noneにしておけば自動で設定
53
+ load_in_4bit = True # 今回は13Bモデルを扱うためTrue
54
+
55
+ model, tokenizer = FastLanguageModel.from_pretrained(
56
+ model_name=model_id,
57
+ dtype=dtype,
58
+ load_in_4bit=load_in_4bit,
59
+ trust_remote_code=True,
60
+ )
61
+
62
+ # 元のモデルにLoRAのアダプタを統合。
63
+ model = PeftModel.from_pretrained(model, adapter_id, token = HF_TOKEN)
64
+
65
+ # タスクとなるデータの読み込み。
66
+ # 事前にデータをアップロードしてください。
67
+ datasets = []
68
+ with open("./elyza-tasks-100-TV_0.jsonl", "r") as f:
69
+ item = ""
70
+ for line in f:
71
+ line = line.strip()
72
+ item += line
73
+ if item.endswith("}"):
74
+ datasets.append(json.loads(item))
75
+ item = ""
76
+
77
+
78
+ ### 使用例
79
+ # モデルを用いてタスクの推論。
80
+
81
+ # 推論するためにモデルのモードを変更
82
+ FastLanguageModel.for_inference(model)
83
+
84
+ results = []
85
+ for dt in tqdm(datasets):
86
+ input = dt["input"]
87
+
88
+ prompt = f"""### 指示\n{input}\n### 回答\n"""
89
+
90
+ inputs = tokenizer([prompt], return_tensors = "pt").to(model.device)
91
+
92
+ outputs = model.generate(**inputs, max_new_tokens = 512, use_cache = True, do_sample=False, repetition_penalty=1.2)
93
+ prediction = tokenizer.decode(outputs[0], skip_special_tokens=True).split('\n### 回答')[-1]
94
 
95
+ results.append({"task_id": dt["task_id"], "input": input, "output": prediction})
 
 
96
 
97
+ # 結果をjsonlで保存。
98
 
99
+ # ここではadapter_idを元にファイル名を決定しているが、ファイル名は任意で問題なし。
100
+ json_file_id = re.sub(".*/", "", adapter_id)
101
+ with open(f"/content/{json_file_id}_output.jsonl", 'w', encoding='utf-8') as f:
102
+ for result in results:
103
+ json.dump(result, f, ensure_ascii=False)
104
+ f.write('\n')
105
+ ```