Update README.md
Browse files
README.md
CHANGED
@@ -43,9 +43,9 @@ model = AutoModelForCausalLM.from_pretrained("deepseek-ai/deepseek-coder-1.3b-in
|
|
43 |
messages=[
|
44 |
{ 'role': 'user', 'content': "write a quick sort algorithm in python."}
|
45 |
]
|
46 |
-
inputs = tokenizer.apply_chat_template(messages, return_tensors="pt").to(model.device)
|
47 |
# 32021 is the id of <|EOT|> token
|
48 |
-
outputs = model.generate(inputs, max_new_tokens=512, do_sample=False, top_k=50, top_p=0.95, num_return_sequences=1, eos_token_id=32021
|
49 |
print(tokenizer.decode(outputs[0][len(inputs[0]):], skip_special_tokens=True))
|
50 |
```
|
51 |
|
|
|
43 |
messages=[
|
44 |
{ 'role': 'user', 'content': "write a quick sort algorithm in python."}
|
45 |
]
|
46 |
+
inputs = tokenizer.apply_chat_template(messages, add_generation_prompt=True, return_tensors="pt").to(model.device)
|
47 |
# 32021 is the id of <|EOT|> token
|
48 |
+
outputs = model.generate(inputs, max_new_tokens=512, do_sample=False, top_k=50, top_p=0.95, num_return_sequences=1, eos_token_id=32021)
|
49 |
print(tokenizer.decode(outputs[0][len(inputs[0]):], skip_special_tokens=True))
|
50 |
```
|
51 |
|