Qwen / Qwen2-1.5B-Instruct

huggingface.co
Total runs: 3.7M
24-hour runs: 0
7-day runs: -155.3K
30-day runs: -188.1K
Model's Last Updated: June 06 2024
text-generation

Introduction of Qwen2-1.5B-Instruct

Model Details of Qwen2-1.5B-Instruct

Qwen2-1.5B-Instruct

Introduction

Qwen2 is the new series of Qwen large language models. For Qwen2, we release a number of base language models and instruction-tuned language models ranging from 0.5 to 72 billion parameters, including a Mixture-of-Experts model. This repo contains the instruction-tuned 1.5B Qwen2 model.

Compared with the state-of-the-art opensource language models, including the previous released Qwen1.5, Qwen2 has generally surpassed most opensource models and demonstrated competitiveness against proprietary models across a series of benchmarks targeting for language understanding, language generation, multilingual capability, coding, mathematics, reasoning, etc.

For more details, please refer to our blog , GitHub , and Documentation .

Model Details

Qwen2 is a language model series including decoder language models of different model sizes. For each size, we release the base language model and the aligned chat model. It is based on the Transformer architecture with SwiGLU activation, attention QKV bias, group query attention, etc. Additionally, we have an improved tokenizer adaptive to multiple natural languages and codes.

Training details

We pretrained the models with a large amount of data, and we post-trained the models with both supervised finetuning and direct preference optimization.

Requirements

The code of Qwen2 has been in the latest Hugging face transformers and we advise you to install transformers>=4.37.0 , or you might encounter the following error:

KeyError: 'qwen2'
Quickstart

Here provides a code snippet with apply_chat_template to show you how to load the tokenizer and model and how to generate contents.

from transformers import AutoModelForCausalLM, AutoTokenizer
device = "cuda" # the device to load the model onto

model = AutoModelForCausalLM.from_pretrained(
    "Qwen/Qwen2-1.5B-Instruct",
    torch_dtype="auto",
    device_map="auto"
)
tokenizer = AutoTokenizer.from_pretrained("Qwen/Qwen2-1.5B-Instruct")

prompt = "Give me a short introduction to large language model."
messages = [
    {"role": "system", "content": "You are a helpful assistant."},
    {"role": "user", "content": prompt}
]
text = tokenizer.apply_chat_template(
    messages,
    tokenize=False,
    add_generation_prompt=True
)
model_inputs = tokenizer([text], return_tensors="pt").to(device)

generated_ids = model.generate(
    model_inputs.input_ids,
    max_new_tokens=512
)
generated_ids = [
    output_ids[len(input_ids):] for input_ids, output_ids in zip(model_inputs.input_ids, generated_ids)
]

response = tokenizer.batch_decode(generated_ids, skip_special_tokens=True)[0]
Evaluation

We briefly compare Qwen2-1.5B-Instruct with Qwen1.5-1.8B-Chat. The results are as follows:

Datasets Qwen1.5-0.5B-Chat Qwen2-0.5B-Instruct Qwen1.5-1.8B-Chat Qwen2-1.5B-Instruct
MMLU 35.0 37.9 43.7 52.4
HumanEval 9.1 17.1 25.0 37.8
GSM8K 11.3 40.1 35.3 61.6
C-Eval 37.2 45.2 55.3 63.8
IFEval (Prompt Strict-Acc.) 14.6 20.0 16.8 29.0
Citation

If you find our work helpful, feel free to give us a cite.

@article{qwen2,
  title={Qwen2 Technical Report},
  year={2024}
}

Runs of Qwen Qwen2-1.5B-Instruct on huggingface.co

3.7M
Total runs
0
24-hour runs
17.8K
3-day runs
-155.3K
7-day runs
-188.1K
30-day runs

More Information About Qwen2-1.5B-Instruct huggingface.co Model

More Qwen2-1.5B-Instruct license Visit here:

https://choosealicense.com/licenses/apache-2.0

Qwen2-1.5B-Instruct huggingface.co

Qwen2-1.5B-Instruct huggingface.co is an AI model on huggingface.co that provides Qwen2-1.5B-Instruct's model effect (), which can be used instantly with this Qwen Qwen2-1.5B-Instruct model. huggingface.co supports a free trial of the Qwen2-1.5B-Instruct model, and also provides paid use of the Qwen2-1.5B-Instruct. Support call Qwen2-1.5B-Instruct model through api, including Node.js, Python, http.

Qwen2-1.5B-Instruct huggingface.co Url

https://huggingface.co/Qwen/Qwen2-1.5B-Instruct

Qwen Qwen2-1.5B-Instruct online free

Qwen2-1.5B-Instruct huggingface.co is an online trial and call api platform, which integrates Qwen2-1.5B-Instruct's modeling effects, including api services, and provides a free online trial of Qwen2-1.5B-Instruct, you can try Qwen2-1.5B-Instruct online for free by clicking the link below.

Qwen Qwen2-1.5B-Instruct online free url in huggingface.co:

https://huggingface.co/Qwen/Qwen2-1.5B-Instruct

Qwen2-1.5B-Instruct install

Qwen2-1.5B-Instruct is an open source model from GitHub that offers a free installation service, and any user can find Qwen2-1.5B-Instruct on GitHub to install. At the same time, huggingface.co provides the effect of Qwen2-1.5B-Instruct install, users can directly use Qwen2-1.5B-Instruct installed effect in huggingface.co for debugging and trial. It also supports api for free installation.

Qwen2-1.5B-Instruct install url in huggingface.co:

https://huggingface.co/Qwen/Qwen2-1.5B-Instruct

Url of Qwen2-1.5B-Instruct

Qwen2-1.5B-Instruct huggingface.co Url

Provider of Qwen2-1.5B-Instruct huggingface.co

Qwen
ORGANIZATIONS

Other API from Qwen

huggingface.co

Total runs: 10.0M
Run Growth: 1.4M
Growth Rate: 14.09%
Updated:July 26 2025
huggingface.co

Total runs: 5.0M
Run Growth: 1.4M
Growth Rate: 28.59%
Updated:July 26 2025
huggingface.co

Total runs: 5.0M
Run Growth: 725.1K
Growth Rate: 14.63%
Updated:July 26 2025
huggingface.co

Total runs: 4.8M
Run Growth: 233.5K
Growth Rate: 4.83%
Updated:July 26 2025
huggingface.co

Total runs: 2.7M
Run Growth: 1.1M
Growth Rate: 39.10%
Updated:July 26 2025
huggingface.co

Total runs: 2.5M
Run Growth: -1.8M
Growth Rate: -68.08%
Updated:January 30 2026
huggingface.co

Total runs: 2.1M
Run Growth: 37.9K
Growth Rate: 1.77%
Updated:May 21 2025
huggingface.co

Total runs: 1.9M
Run Growth: 877.2K
Growth Rate: 45.49%
Updated:September 25 2024
huggingface.co

Total runs: 1.9M
Run Growth: 640.6K
Growth Rate: 33.36%
Updated:July 26 2025
huggingface.co

Total runs: 1.8M
Run Growth: 694.7K
Growth Rate: 39.25%
Updated:July 26 2025
huggingface.co

Total runs: 1.6M
Run Growth: -31.7K
Growth Rate: -1.93%
Updated:May 21 2025
huggingface.co

Total runs: 1.4M
Run Growth: 454.7K
Growth Rate: 31.65%
Updated:July 26 2025
huggingface.co

Total runs: 1.2M
Run Growth: -96.0K
Growth Rate: -8.33%
Updated:September 25 2024
huggingface.co

Total runs: 1.1M
Run Growth: 538.3K
Growth Rate: 47.83%
Updated:July 26 2025
huggingface.co

Total runs: 931.9K
Run Growth: 50.6K
Growth Rate: 5.43%
Updated:July 26 2025
huggingface.co

Total runs: 871.6K
Run Growth: -10.3K
Growth Rate: -1.19%
Updated:July 26 2025
huggingface.co

Total runs: 715.9K
Run Growth: 112.3K
Growth Rate: 15.68%
Updated:November 18 2024
huggingface.co

Total runs: 641.1K
Run Growth: -1.3M
Growth Rate: -208.05%
Updated:May 21 2025
huggingface.co

Total runs: 634.4K
Run Growth: 10.1K
Growth Rate: 1.58%
Updated:July 26 2025
huggingface.co

Total runs: 616.3K
Run Growth: -3.5M
Growth Rate: -557.42%
Updated:January 30 2026
huggingface.co

Total runs: 565.3K
Run Growth: 310.6K
Growth Rate: 54.25%
Updated:April 23 2026
huggingface.co

Total runs: 549.8K
Run Growth: -742.0K
Growth Rate: -134.11%
Updated:April 23 2026
huggingface.co

Total runs: 520.5K
Run Growth: -136.8K
Growth Rate: -35.03%
Updated:February 04 2026
huggingface.co

Total runs: 480.5K
Run Growth: 92.1K
Growth Rate: 19.16%
Updated:July 26 2025
huggingface.co

Total runs: 477.2K
Run Growth: 17.9K
Growth Rate: 3.75%
Updated:October 08 2024
huggingface.co

Total runs: 434.0K
Run Growth: 98.2K
Growth Rate: 22.30%
Updated:April 23 2026
huggingface.co

Total runs: 432.2K
Run Growth: -26.0K
Growth Rate: -6.02%
Updated:May 21 2025
huggingface.co

Total runs: 429.4K
Run Growth: 129.8K
Growth Rate: 30.24%
Updated:April 30 2025
huggingface.co

Total runs: 426.4K
Run Growth: 139.1K
Growth Rate: 32.61%
Updated:May 21 2025
huggingface.co

Total runs: 405.1K
Run Growth: 85.2K
Growth Rate: 21.03%
Updated:May 21 2025
huggingface.co

Total runs: 390.1K
Run Growth: 390.1K
Growth Rate: 100.00%
Updated:February 23 2026
huggingface.co

Total runs: 381.6K
Run Growth: -385.2K
Growth Rate: -100.96%
Updated:September 23 2024
huggingface.co

Total runs: 340.3K
Run Growth: 91.7K
Growth Rate: 26.93%
Updated:October 22 2024