Update README.md
Browse files
README.md
CHANGED
@@ -27,7 +27,6 @@ pad_token_id = tokenizer.pad_token_id
|
|
27 |
model = AutoModelForCausalLM.from_pretrained(
|
28 |
"ryota39/llm-jp-1b-sft-15k",
|
29 |
device_map="auto",
|
30 |
-
torch_dtype=torch.float16,
|
31 |
)
|
32 |
|
33 |
text = "###Input: 東京の観光名所を教えてください。\n###Output: "
|
@@ -45,12 +44,37 @@ with torch.no_grad():
|
|
45 |
tokenized_input,
|
46 |
attention_mask=attention_mask,
|
47 |
max_new_tokens=128,
|
48 |
-
do_sample=
|
49 |
-
|
50 |
-
|
51 |
repetition_penalty=1.0
|
52 |
)[0]
|
53 |
|
54 |
print(tokenizer.decode(output))
|
55 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
56 |
```
|
|
|
27 |
model = AutoModelForCausalLM.from_pretrained(
|
28 |
"ryota39/llm-jp-1b-sft-15k",
|
29 |
device_map="auto",
|
|
|
30 |
)
|
31 |
|
32 |
text = "###Input: 東京の観光名所を教えてください。\n###Output: "
|
|
|
44 |
tokenized_input,
|
45 |
attention_mask=attention_mask,
|
46 |
max_new_tokens=128,
|
47 |
+
do_sample=True,
|
48 |
+
top_p=0.95,
|
49 |
+
temperature=0.8,
|
50 |
repetition_penalty=1.0
|
51 |
)[0]
|
52 |
|
53 |
print(tokenizer.decode(output))
|
54 |
|
55 |
+
```
|
56 |
+
|
57 |
+
## 出力例
|
58 |
+
|
59 |
+
```
|
60 |
+
###Input: 東京の観光名所を教えてください。
|
61 |
+
###Output: 東京には多くの観光名所がある:
|
62 |
+
1.皇居
|
63 |
+
2.江戸東京博物館
|
64 |
+
3.東京タワー
|
65 |
+
4.東京スカイツリー
|
66 |
+
5.芝公園
|
67 |
+
6.東京タワー、増上寺、増上寺宝物館
|
68 |
+
7.浜離宮恩賜庭園
|
69 |
+
8.東京都庁
|
70 |
+
9.増上寺
|
71 |
+
10.新宿御苑
|
72 |
+
11.浅草寺
|
73 |
+
12.上野公園
|
74 |
+
13.お台場
|
75 |
+
14.明治神宮
|
76 |
+
15.上野動物園
|
77 |
+
16.東京国立博物館
|
78 |
+
17.浅草寺、浅草寺仲見
|
79 |
+
|
80 |
```
|