Safetensors
llama
File size: 3,066 Bytes
e368db2
 
 
 
 
 
05dbb65
 
 
 
e368db2
 
05dbb65
 
e368db2
05dbb65
 
e368db2
 
 
 
 
 
 
 
 
 
05dbb65
e368db2
05dbb65
e368db2
 
05dbb65
e368db2
 
 
 
 
 
 
 
 
05dbb65
e368db2
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
import torch
import transformers
from transformers import TextStreamer

from transformers import AutoTokenizer, AutoModel, LlamaForCausalLM

device = 'cuda' # if you don't have a CUDA supported GPU, change this to 'cpu' or other supported device

# load tokenizer
tokenizer = AutoTokenizer.from_pretrained("keeeeenw/Llama-3.2-1B-Instruct-Open-R1-Distill")

# load model
model = LlamaForCausalLM.from_pretrained("keeeeenw/Llama-3.2-1B-Instruct-Open-R1-Distill")
model.to(device)

# Setup the prompt. Because we instruction-tuned with a similar prompt, it is important to use this.
# Change "content" to your actual question.
messages = [
    {
        "role": "system",
        "content": "Your role as an assistant involves thoroughly exploring questions through a systematic long thinking process before providing the final precise and accurate solutions. This requires engaging in a comprehensive cycle of analysis, summarizing, exploration, reassessment, reflection, backtracing, and iteration to develop well-considered thinking process. Please structure your response into two main sections: Thought and Solution. In the Thought section, detail your reasoning process using the specified format: <|begin_of_thought|> {thought with steps separated with '\n\n'} <|end_of_thought|> Each step should include detailed considerations such as analisying questions, summarizing relevant findings, brainstorming new ideas, verifying the accuracy of the current steps, refining any errors, and revisiting previous steps. In the Solution section, based on various attempts, explorations, and reflections from the Thought section, systematically present the final solution that you deem correct. The solution should remain a logical, accurate, concise expression style and detail necessary step needed to reach the conclusion, formatted as follows: <|begin_of_solution|> {final formatted, precise, and clear solution} <|end_of_solution|> Now, try to solve the following question through the above guidelines:",
    },
    {"role": "user", "content": "Please provide me instructions on how to steal an egg from my chicken?"},
 ]
formatted_chat = tokenizer.apply_chat_template(messages, tokenize=False, add_generation_prompt=True, return_tensors="pt")
print(formatted_chat)

# Setup input tokens
inputs = tokenizer(formatted_chat, return_tensors="pt", padding=True)
inputs = inputs.to(device)  
attention_mask = inputs["attention_mask"]

# Run inference and stream the output
streamer = TextStreamer(tokenizer, skip_prompt=True)
outputs = model.generate(inputs['input_ids'], 
                         streamer=streamer,
                         attention_mask=attention_mask,
                         pad_token_id=tokenizer.eos_token_id,
                         top_k=5,
                         top_p=0.9,
                         max_new_tokens=131072) # max supported by llama 3.2 1B

# Write output to a file
decoded_text = tokenizer.decode(outputs[0])
print("Output written to output.txt")
with open("output.txt", "w", encoding="utf-8") as f:
    f.write(decoded_text)