Views
No views yet
| Name | Quant method | Size |
|---|---|---|
| Reasoning-0.5b.Q2_K.gguf | Q2_K | 0.32GB |
| Reasoning-0.5b.IQ3_XS.gguf | IQ3_XS | 0.32GB |
| Reasoning-0.5b.IQ3_S.gguf | IQ3_S | 0.32GB |
| Reasoning-0.5b.Q3_K_S.gguf | Q3_K_S | 0.32GB |
| Reasoning-0.5b.IQ3_M.gguf | IQ3_M | 0.32GB |
| Reasoning-0.5b.Q3_K.gguf | Q3_K | 0.33GB |
| Reasoning-0.5b.Q3_K_M.gguf | Q3_K_M | 0.33GB |
| Reasoning-0.5b.Q3_K_L.gguf | Q3_K_L | 0.34GB |
| Reasoning-0.5b.IQ4_XS.gguf | IQ4_XS | 0.33GB |
| Reasoning-0.5b.Q4_0.gguf | Q4_0 | 0.33GB |
| Reasoning-0.5b.IQ4_NL.gguf | IQ4_NL | 0.33GB |
| Reasoning-0.5b.Q4_K_S.gguf | Q4_K_S | 0.36GB |
| Reasoning-0.5b.Q4_K.gguf | Q4_K | 0.37GB |
| Reasoning-0.5b.Q4_K_M.gguf | Q4_K_M | 0.37GB |
| Reasoning-0.5b.Q4_1.gguf | Q4_1 | 0.35GB |
| Reasoning-0.5b.Q5_0.gguf | Q5_0 | 0.37GB |
| Reasoning-0.5b.Q5_K_S.gguf | Q5_K_S | 0.38GB |
| Reasoning-0.5b.Q5_K.gguf | Q5_K | 0.39GB |
| Reasoning-0.5b.Q5_K_M.gguf | Q5_K_M | 0.39GB |
| Reasoning-0.5b.Q5_1.gguf | Q5_1 | 0.39GB |
| Reasoning-0.5b.Q6_K.gguf | Q6_K | 0.47GB |
| Reasoning-0.5b.Q8_0.gguf | Q8_0 | 0.49GB |
1from transformers import AutoModelForCausalLM, AutoTokenizer
2
3MAX_REASONING_TOKENS = 1024
4MAX_RESPONSE_TOKENS = 512
5
6model_name = "KingNish/Reasoning-0.5b"
7
8model = AutoModelForCausalLM.from_pretrained(model_name, torch_dtype="auto", device_map="auto")
9tokenizer = AutoTokenizer.from_pretrained(model_name)
10
11prompt = "Which is greater 9.9 or 9.11 ??"
12messages = [
13 {"role": "user", "content": prompt}
14]
15
16# Generate reasoning
17reasoning_template = tokenizer.apply_chat_template(messages, tokenize=False, add_reasoning_prompt=True)
18reasoning_inputs = tokenizer(reasoning_template, return_tensors="pt").to(model.device)
19reasoning_ids = model.generate(**reasoning_inputs, max_new_tokens=MAX_REASONING_TOKENS)
20reasoning_output = tokenizer.decode(reasoning_ids[0, reasoning_inputs.input_ids.shape[1]:], skip_special_tokens=True)
21
22# print("REASONING: " + reasoning_output)
23
24# Generate answer
25messages.append({"role": "reasoning", "content": reasoning_output})
26response_template = tokenizer.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
27response_inputs = tokenizer(response_template, return_tensors="pt").to(model.device)
28response_ids = model.generate(**response_inputs, max_new_tokens=MAX_RESPONSE_TOKENS)
29response_output = tokenizer.decode(response_ids[0, response_inputs.input_ids.shape[1]:], skip_special_tokens=True)
30
31print("ANSWER: " + response_output)