Update code example in readme to use `device` variable instead of hard coded `cuda` (#5)
Browse files- Update code example in readme to use `device` variable instead of hard coded `cuda` (cb7022d7e3a649279a4d21d89fadecc6407bf523)
Co-authored-by: Tanner Burns <[email protected]>
README.md
CHANGED
@@ -40,7 +40,7 @@ model = AutoModelForCausalLM.from_pretrained(checkpoint).to(device)
|
|
40 |
messages = [{"role": "user", "content": "List the steps to bake a chocolate cake from scratch."}]
|
41 |
input_text=tokenizer.apply_chat_template(messages, tokenize=False)
|
42 |
print(input_text)
|
43 |
-
inputs = tokenizer.encode(input_text, return_tensors="pt").to(
|
44 |
outputs = model.generate(inputs, max_new_tokens=100, temperature=0.6, top_p=0.92, do_sample=True)
|
45 |
print(tokenizer.decode(outputs[0]))
|
46 |
```
|
|
|
40 |
messages = [{"role": "user", "content": "List the steps to bake a chocolate cake from scratch."}]
|
41 |
input_text=tokenizer.apply_chat_template(messages, tokenize=False)
|
42 |
print(input_text)
|
43 |
+
inputs = tokenizer.encode(input_text, return_tensors="pt").to(device)
|
44 |
outputs = model.generate(inputs, max_new_tokens=100, temperature=0.6, top_p=0.92, do_sample=True)
|
45 |
print(tokenizer.decode(outputs[0]))
|
46 |
```
|