Views
No views yet
| Name | Quant method | Size |
|---|---|---|
| deepseek-math-7b-rl.Q2_K.gguf | Q2_K | 2.53GB |
| deepseek-math-7b-rl.Q3_K_S.gguf | Q3_K_S | 2.92GB |
| deepseek-math-7b-rl.Q3_K.gguf | Q3_K | 3.22GB |
| deepseek-math-7b-rl.Q3_K_M.gguf | Q3_K_M | 3.22GB |
| deepseek-math-7b-rl.Q3_K_L.gguf | Q3_K_L | 3.49GB |
| deepseek-math-7b-rl.IQ4_XS.gguf | IQ4_XS | 3.56GB |
| deepseek-math-7b-rl.Q4_0.gguf | Q4_0 | 3.73GB |
| deepseek-math-7b-rl.IQ4_NL.gguf | IQ4_NL | 3.74GB |
| deepseek-math-7b-rl.Q4_K_S.gguf | Q4_K_S | 3.75GB |
| deepseek-math-7b-rl.Q4_K.gguf | Q4_K | 3.93GB |
| deepseek-math-7b-rl.Q4_K_M.gguf | Q4_K_M | 3.93GB |
| deepseek-math-7b-rl.Q4_1.gguf | Q4_1 | 4.1GB |
| deepseek-math-7b-rl.Q5_0.gguf | Q5_0 | 4.48GB |
| deepseek-math-7b-rl.Q5_K_S.gguf | Q5_K_S | 4.48GB |
| deepseek-math-7b-rl.Q5_K.gguf | Q5_K | 4.59GB |
| deepseek-math-7b-rl.Q5_K_M.gguf | Q5_K_M | 4.59GB |
| deepseek-math-7b-rl.Q5_1.gguf | Q5_1 | 4.86GB |
| deepseek-math-7b-rl.Q6_K.gguf | Q6_K | 5.28GB |
| deepseek-math-7b-rl.Q8_0.gguf | Q8_0 | 6.84GB |

1import torch
2from transformers import AutoTokenizer, AutoModelForCausalLM, GenerationConfig
3
4model_name = "deepseek-ai/deepseek-math-7b-instruct"
5tokenizer = AutoTokenizer.from_pretrained(model_name)
6model = AutoModelForCausalLM.from_pretrained(model_name, torch_dtype=torch.bfloat16, device_map="auto")
7model.generation_config = GenerationConfig.from_pretrained(model_name)
8model.generation_config.pad_token_id = model.generation_config.eos_token_id
9
10messages = [
11 {"role": "user", "content": "what is the integral of x^2 from 0 to 2?\nPlease reason step by step, and put your final answer within \\boxed{}."}
12]
13input_tensor = tokenizer.apply_chat_template(messages, add_generation_prompt=True, return_tensors="pt")
14outputs = model.generate(input_tensor.to(model.device), max_new_tokens=100)
15
16result = tokenizer.decode(outputs[0][input_tensor.shape[1]:], skip_special_tokens=True)
17print(result)apply_chat_template, you can also interact with our model following the sample template. Note that messages should be replaced by your input.User: {messages[0]['content']}
Assistant: {messages[1]['content']}<|end▁of▁sentence|>User: {messages[2]['content']}
Assistant:add_special_tokens=True), our tokenizer automatically adds a bos_token (<|begin▁of▁sentence|>) before the input text. Additionally, since the system prompt is not compatible with this version of our models, we DO NOT RECOMMEND including the system prompt in your input.