omitakahiro
commited on
Commit
•
57e0bba
1
Parent(s):
f111a7f
Update README.md
Browse files
README.md
CHANGED
@@ -22,8 +22,8 @@ prompt_template = """### 指示:
|
|
22 |
### 応答:
|
23 |
"""
|
24 |
|
25 |
-
tokenizer = AutoTokenizer.from_pretrained("stockmark/stockmark-100b")
|
26 |
-
model = AutoModelForCausalLM.from_pretrained("stockmark/stockmark-100b", device_map="auto", torch_dtype=torch.bfloat16)
|
27 |
|
28 |
instruction = "生成AIとは?"
|
29 |
prompt = prompt_template.format(instruction=instruction)
|
|
|
22 |
### 応答:
|
23 |
"""
|
24 |
|
25 |
+
tokenizer = AutoTokenizer.from_pretrained("stockmark/stockmark-100b-instruct-v0.1")
|
26 |
+
model = AutoModelForCausalLM.from_pretrained("stockmark/stockmark-100b-instruct-v0.1", device_map="auto", torch_dtype=torch.bfloat16)
|
27 |
|
28 |
instruction = "生成AIとは?"
|
29 |
prompt = prompt_template.format(instruction=instruction)
|