Views
No views yet
| Name | Quant method | Size |
|---|---|---|
| Qwen2-Math-7B-Instruct.Q2_K.gguf | Q2_K | 2.81GB |
| Qwen2-Math-7B-Instruct.IQ3_XS.gguf | IQ3_XS | 3.12GB |
| Qwen2-Math-7B-Instruct.IQ3_S.gguf | IQ3_S | 3.26GB |
| Qwen2-Math-7B-Instruct.Q3_K_S.gguf | Q3_K_S | 3.25GB |
| Qwen2-Math-7B-Instruct.IQ3_M.gguf | IQ3_M | 3.33GB |
| Qwen2-Math-7B-Instruct.Q3_K.gguf | Q3_K | 3.55GB |
| Qwen2-Math-7B-Instruct.Q3_K_M.gguf | Q3_K_M | 3.55GB |
| Qwen2-Math-7B-Instruct.Q3_K_L.gguf | Q3_K_L | 3.81GB |
| Qwen2-Math-7B-Instruct.IQ4_XS.gguf | IQ4_XS | 3.96GB |
| Qwen2-Math-7B-Instruct.Q4_0.gguf | Q4_0 | 4.13GB |
| Qwen2-Math-7B-Instruct.IQ4_NL.gguf | IQ4_NL | 4.16GB |
| Qwen2-Math-7B-Instruct.Q4_K_S.gguf | Q4_K_S | 4.15GB |
| Qwen2-Math-7B-Instruct.Q4_K.gguf | Q4_K | 4.36GB |
| Qwen2-Math-7B-Instruct.Q4_K_M.gguf | Q4_K_M | 4.36GB |
| Qwen2-Math-7B-Instruct.Q4_1.gguf | Q4_1 | 4.54GB |
| Qwen2-Math-7B-Instruct.Q5_0.gguf | Q5_0 | 4.95GB |
| Qwen2-Math-7B-Instruct.Q5_K_S.gguf | Q5_K_S | 4.95GB |
| Qwen2-Math-7B-Instruct.Q5_K.gguf | Q5_K | 5.07GB |
| Qwen2-Math-7B-Instruct.Q5_K_M.gguf | Q5_K_M | 5.07GB |
| Qwen2-Math-7B-Instruct.Q5_1.gguf | Q5_1 | 5.36GB |
| Qwen2-Math-7B-Instruct.Q6_K.gguf | Q6_K | 5.82GB |
| Qwen2-Math-7B-Instruct.Q8_0.gguf | Q8_0 | 7.54GB |
[!Warning]🚨 Temporarily this model mainly supports English. We will release bilingual (English & Chinese) models soon!
transformers>=4.40.0 for Qwen2-Math models. The latest version is recommended.[!Warning]🚨 This is a must because `transformers` integrated Qwen2 codes since `4.37.0`.
[!Important]Qwen2-Math-7B-Instruct is an instruction model for chatting;Qwen2-Math-7B is a base model typically used for completion and few-shot inference, serving as a better starting point for fine-tuning.
transformers:1from transformers import AutoModelForCausalLM, AutoTokenizer
2
3model_name = "Qwen/Qwen2-Math-7B-Instruct"
4device = "cuda" # the device to load the model onto
5
6model = AutoModelForCausalLM.from_pretrained(
7 model_name,
8 torch_dtype="auto",
9 device_map="auto"
10)
11tokenizer = AutoTokenizer.from_pretrained(model_name)
12
13prompt = "Find the value of $x$ that satisfies the equation $4x+5 = 6x+7$."
14messages = [
15 {"role": "system", "content": "You are a helpful assistant."},
16 {"role": "user", "content": prompt}
17]
18text = tokenizer.apply_chat_template(
19 messages,
20 tokenize=False,
21 add_generation_prompt=True
22)
23model_inputs = tokenizer([text], return_tensors="pt").to(device)
24
25generated_ids = model.generate(
26 **model_inputs,
27 max_new_tokens=512
28)
29generated_ids = [
30 output_ids[len(input_ids):] for input_ids, output_ids in zip(model_inputs.input_ids, generated_ids)
31]
32
33response = tokenizer.batch_decode(generated_ids, skip_special_tokens=True)[0]snapshot_download can help you solve issues concerning downloading checkpoints.@article{yang2024qwen2,
title={Qwen2 technical report},
author={Yang, An and Yang, Baosong and Hui, Binyuan and Zheng, Bo and Yu, Bowen and Zhou, Chang and Li, Chengpeng and Li, Chengyuan and Liu, Dayiheng and Huang, Fei and others},
journal={arXiv preprint arXiv:2407.10671},
year={2024}
}