Update README.md
#1
by
r-yuba62
- opened
README.md
CHANGED
@@ -1,98 +1,101 @@
|
|
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 |
-
アダプターモデル 1: nmczzi/llm-jp-3-13b-finetune-4
|
17 |
-
アダプターモデル 2: nmczzi/llm-jp-3-13b-finetune-4-dpo-2
|
18 |
-
アダプターモデル 3: nmczzi/llm-jp-3-13b-finetune-4-dpo-2-plus
|
19 |
-
量子化: 4ビット量子化 (QLoRA)
|
20 |
-
|
21 |
-
|
22 |
-
# インストール
|
23 |
-
必要なパッケージのインストール:
|
24 |
-
|
25 |
-
pip install -U bitsandbytes transformers accelerate datasets peft
|
26 |
-
|
27 |
-
# 使用方法
|
28 |
-
以下は、モデルの基本的な使用例です:
|
29 |
-
```
|
30 |
-
from transformers import
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
model = PeftModel.from_pretrained(model,
|
65 |
-
|
66 |
-
|
67 |
-
###
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
|
|
|
|
|
|
|
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 |
+
アダプターモデル 1: nmczzi/llm-jp-3-13b-finetune-4
|
17 |
+
アダプターモデル 2: nmczzi/llm-jp-3-13b-finetune-4-dpo-2
|
18 |
+
アダプターモデル 3: nmczzi/llm-jp-3-13b-finetune-4-dpo-2-plus
|
19 |
+
量子化: 4ビット量子化 (QLoRA)
|
20 |
+
|
21 |
+
|
22 |
+
# インストール
|
23 |
+
必要なパッケージのインストール:
|
24 |
+
|
25 |
+
pip install -U bitsandbytes transformers accelerate datasets peft
|
26 |
+
|
27 |
+
# 使用方法
|
28 |
+
以下は、モデルの基本的な使用例です:
|
29 |
+
```
|
30 |
+
from transformers import (
|
31 |
+
AutoModelForCausalLM,
|
32 |
+
AutoTokenizer,
|
33 |
+
BitsAndBytesConfig,
|
34 |
+
)
|
35 |
+
from peft import PeftModel
|
36 |
+
import torch
|
37 |
+
|
38 |
+
HF_TOKEN = "AVAILABLE YOUR-HF-TOKEN"
|
39 |
+
|
40 |
+
model_name = "llm-jp/llm-jp-3-13b"
|
41 |
+
adapter_name = "r-yuba62/llm-jp-3-13b-finetune"
|
42 |
+
|
43 |
+
bnb_config = BitsAndBytesConfig(
|
44 |
+
load_in_4bit=True,
|
45 |
+
bnb_4bit_quant_type="nf4",
|
46 |
+
bnb_4bit_compute_dtype=torch.bfloat16,
|
47 |
+
)
|
48 |
+
|
49 |
+
# モデルとトークナイザーをロード
|
50 |
+
model = AutoModelForCausalLM.from_pretrained(
|
51 |
+
model_name,
|
52 |
+
quantization_config=bnb_config,
|
53 |
+
device_map="auto",
|
54 |
+
token=HF_TOKEN
|
55 |
+
)
|
56 |
+
|
57 |
+
tokenizer = AutoTokenizer.from_pretrained(
|
58 |
+
model_name,
|
59 |
+
trust_remote_code=True,
|
60 |
+
token=HF_TOKEN
|
61 |
+
)
|
62 |
+
|
63 |
+
# PEFTアダプターを適用
|
64 |
+
model = PeftModel.from_pretrained(model, adapter_name, token=HF_TOKEN)
|
65 |
+
|
66 |
+
def get_response(input_text):
|
67 |
+
prompt = f"""### 指示
|
68 |
+
{input_text}
|
69 |
+
### 回答:
|
70 |
+
"""
|
71 |
+
# トークナイズ処理
|
72 |
+
tokenized_input = tokenizer(
|
73 |
+
prompt,
|
74 |
+
return_tensors="pt",
|
75 |
+
padding=True,
|
76 |
+
truncation=True,
|
77 |
+
max_length=512
|
78 |
+
)
|
79 |
+
|
80 |
+
input_ids = tokenized_input["input_ids"].to(model.device)
|
81 |
+
attention_mask = tokenized_input["attention_mask"].to(model.device)
|
82 |
+
|
83 |
+
# モデル生成
|
84 |
+
with torch.no_grad():
|
85 |
+
outputs = model.generate(
|
86 |
+
input_ids=input_ids,
|
87 |
+
attention_mask=attention_mask,
|
88 |
+
max_new_tokens=512,
|
89 |
+
do_sample=False,
|
90 |
+
repetition_penalty=1.2,
|
91 |
+
pad_token_id=tokenizer.eos_token_id
|
92 |
+
)
|
93 |
+
|
94 |
+
# 出力のデコード
|
95 |
+
output_text = tokenizer.decode(outputs[0], skip_special_tokens=True)
|
96 |
+
return output_text
|
97 |
+
|
98 |
+
input_text = "xxxを教えてください"
|
99 |
+
response = get_response(input_text)
|
100 |
+
print(response)
|
101 |
+
```
|