Back to Model Catalog
Model OpenAI-compatible

Llama-4-Scout-17B-16E-Instruct-quantized.w4a16

XIM Only
4103842E-F281-41AF-AB47-7409DCE49B01
Parameters22.2B
Context10485K
LicenseUnknown
Architecturellama4

Description

---
language:

  • ar
  • de
  • en
  • es
  • fr
  • hi
  • id
  • it
  • pt
  • th
  • tl
  • vi

basemodel:
  • meta-llama/Llama-4-Scout-17B-16E-Instruct

pipeline
tag: image-text-to-text
tags:
  • facebook
  • meta
  • pytorch
  • llama
  • llama4
  • neuralmagic
  • redhat
  • llmcompressor
  • quantized
  • W4A16
  • INT4
  • conversational
  • compressed-tensors

license: llama4
licensename: llama4
name: RedHatAI/Llama-4-Scout-17B-16E-Instruct-quantized.w4a16
description: This model was obtained by quantizing weights of Llama-4-Scout-17B-16E-Instruct to INT4 data type.
readme: https://huggingface.co/RedHatAI/Llama-4-Scout-17B-16E-Instruct-quantized.w4a16/main/README.md
tasks:
  • image-text-to-text
  • text-to-text

provider: Meta
license
link: https://www.llama.com/llama4/license/
validatedon:
  • RHOAI 2.20
  • RHAIIS 3.0
  • RHELAI 1.5

---
<h1 style="display: flex; align-items: center; gap: 10px; margin: 0;">
Llama-4-Scout-17B-16E-Instruct-quantized.w4a16
<img src="https://www.redhat.com/rhdc/managed-files/Catalog-Validated
model0.png" alt="Model Icon" width="40" style="margin: 0; padding: 0;" />
</h1>

<a href="https://www.redhat.com/en/products/ai/validated-models" target="
blank" style="margin: 0; padding: 0;">
<img src="https://www.redhat.com/rhdc/managed-files/Validatedbadge-Dark.png" alt="Validated Badge" width="250" style="margin: 0; padding: 0;" />
</a>

Model Overview

  • Model Architecture: Llama4ForConditionalGeneration
  • Input: Text / Image
  • Output: Text
  • Model Optimizations:
  • Activation quantization: None
  • Weight quantization: INT4
  • Release Date: 04/25/2025
  • Version: 1.0
  • Validated on: RHOAI 2.20, RHAIIS 3.0, RHELAI 1.5
  • Model Developers: Red Hat (Neural Magic)

Model Optimizations

This model was obtained by quantizing weights of Llama-4-Scout-17B-16E-Instruct to INT4 data type.
This optimization reduces the number of bits used to represent weights from 16 to 4, reducing GPU memory requirements by approximately 75%.
Weight quantization also reduces disk size requirements by approximately 75%. The llm-compressor library is used for quantization.

Deployment

This model can be deployed efficiently on vLLM, Red Hat Enterprise Linux AI, and Openshift AI, as shown in the example below.

Deploy on <strong>vLLM</strong>

from vllm import LLM, SamplingParams
from transformers import AutoTokenizer

model_id = "RedHatAI/Llama-4-Scout-17B-16E-Instruct-quantized.w4a16"
number_gpus = 4

sampling_params = SamplingParams(temperature=0.7, top_p=0.8, max_tokens=256)

tokenizer = AutoTokenizer.from_pretrained(model_id)

prompt = "Give me a short introduction to large language model."

llm = LLM(model=model_id, tensor_parallel_size=number_gpus)

outputs = llm.generate(prompt, sampling_params)

generated_text = outputs[0].outputs[0].text
print(generated_text)

vLLM also supports OpenAI-compatible serving. See the documentation for more details.

<details>
<summary>Deploy on <strong>Red Hat AI Inference Server</strong></summary>

podman run --rm -it --device nvidia.com/gpu=all -p 8000:8000 \
 --ipc=host \
--env "HUGGING_FACE_HUB_TOKEN=$HF_TOKEN" \
--env "HF_HUB_OFFLINE=0" -v ~/.cache/vllm:/home/vllm/.cache \
--name=vllm \
registry.access.redhat.com/rhaiis/rh-vllm-cuda \
vllm serve \
--tensor-parallel-size 8 \
--max-model-len 32768  \
--enforce-eager --model RedHatAI/Llama-4-Scout-17B-16E-Instruct-quantized.w4a16

See Red Hat AI Inference Server documentation for more details.
</details>

<details>
<summary>Deploy on <strong>Red Hat Enterprise Linux AI</strong></summary>

# Download model from Red Hat Registry via docker
# Note: This downloads the model to ~/.cache/instructlab/models unless --model-dir is specified.
ilab model download --repository docker://registry.redhat.io/rhelai1/llama-4-scout-17b-16e-instruct-quantized-w4a16:1.5

# Serve model via ilab
ilab model serve --model-path ~/.cache/instructlab/models/llama-4-scout-17b-16e-instruct-quantized-w4a16
  
# Chat with model
ilab model chat --model ~/.cache/instructlab/models/llama-4-scout-17b-16e-instruct-quantized-w4a16

See Red Hat Enterprise Linux AI documentation for more details.
</details>

<details>
<summary>Deploy on <strong>Red Hat Openshift AI</strong></summary>

# Setting up vllm server with ServingRuntime
# Save as: vllm-servingruntime.yaml
apiVersion: serving.kserve.io/v1alpha1
kind: ServingRuntime
metadata:
 name: vllm-cuda-runtime # OPTIONAL CHANGE: set a unique name
 annotations:
   openshift.io/display-name: vLLM NVIDIA GPU ServingRuntime for KServe
   opendatahub.io/recommended-accelerators: '["nvidia.com/gpu"]'
 labels:
   opendatahub.io/dashboard: 'true'
spec:
 annotations:
   prometheus.io/port: '8080'
   prometheus.io/path: '/metrics'
 multiModel: false
 supportedModelFormats:
   - autoSelect: true
     name: vLLM
 containers:
   - name: kserve-container
     image: quay.io/modh/vllm:rhoai-2.20-cuda # CHANGE if needed. If AMD: quay.io/modh/vllm:rhoai-2.20-rocm
     command:
       - python
       - -m
       - vllm.entrypoints.openai.api_server
     args:
       - "--port=8080"
       - "--model=/mnt/models"
       - "--served-model-name={{.Name}}"
     env:
       - name: HF_HOME
         value: /tmp/hf_home
     ports:
       - containerPort: 8080
         protocol: TCP

# Attach model to vllm server. This is an NVIDIA template
# Save as: inferenceservice.yaml
apiVersion: serving.kserve.io/v1beta1
kind: InferenceService
metadata:
  annotations:
    openshift.io/display-name: Llama-4-Scout-17B-16E-Instruct-quantized.w4a16 # OPTIONAL CHANGE
    serving.kserve.io/deploymentMode: RawDeployment
  name: Llama-4-Scout-17B-16E-Instruct-quantized.w4a16          # specify model name. This value will be used to invoke the model in the payload
  labels:
    opendatahub.io/dashboard: 'true'
spec:
  predictor:
    maxReplicas: 1
    minReplicas: 1
    model:
      modelFormat:
        name: vLLM
      name: ''
      resources:
        limits:
          cpu: '2'			# this is model specific
          memory: 8Gi		# this is model specific
          nvidia.com/gpu: '1'	# this is accelerator specific
        requests:			# same comment for this block
          cpu: '1'
          memory: 4Gi
          nvidia.com/gpu: '1'
      runtime: vllm-cuda-runtime	# must match the ServingRuntime name above
      storageUri: oci://registry.redhat.io/rhelai1/modelcar-llama-4-scout-17b-16e-instruct-quantized-w4a16:1.5
    tolerations:
    - effect: NoSchedule
      key: nvidia.com/gpu
      operator: Exists

# make sure first to be in the project where you want to deploy the model
# oc project <project-name>

# apply both resources to run model

# Apply the ServingRuntime
oc apply -f vllm-servingruntime.yaml

# Apply the InferenceService
oc apply -f qwen-inferenceservice.yaml

INLINECODE1z9A3273CF to find your URL if unsure. # Call the server using curl: curl https://<inference-service-name>-predictor-default.<domain>/v1/chat/completions -H "Content-Type: application/json" \ -d '{ "model": "Llama-4-Scout-17B-16E-Instruct-quantized.w4a16", "stream": true, "stream_options": { "include_usage": true }, "max_tokens": 1, "messages": [ { "role": "user", "content": "How can a bee fly when its wings are so small?" } ] }' INLINECODE3z9B073A00 lm_eval \ --model vllm \ --model_args pretrained="RedHatAI/Llama-4-Scout-17B-16E-Instruct-quantized.w4a16",dtype=auto,add_bos_token=True,max_model_len=4096,tensor_parallel_size=8,gpu_memory_utilization=0.7,enable_chunked_prefill=True,trust_remote_code=True \ --tasks openllm \ --batch_size auto INLINECODE6z3A31B492 lm_eval \ --model vllm \ --model_args pretrained="RedHatAI/Llama-4-Scout-17B-16E-Instruct-quantized.w4a16",dtype=auto,add_bos_token=False,max_model_len=16384,tensor_parallel_size=8,gpu_memory_utilization=0.5,enable_chunked_prefill=True,trust_remote_code=True \ --tasks leaderboard \ --apply_chat_template \ --fewshot_as_multiturn \ --batch_size auto INLINECODE9z900D7402 lm_eval \ --model vllm \ --model_args pretrained="RedHatAI/Llama-4-Scout-17B-16E-Instruct-quantized.w4a16",dtype=auto,add_bos_token=False,max_model_len=524288,tensor_parallel_size=8,gpu_memory_utilization=0.9,enable_chunked_prefill=True,trust_remote_code=True \ --tasks ruler \ --metadata='{"max_seq_lengths":[131072]}' \ --batch_size auto INLINECODE12z705EEA31 lm_eval \ --model vllm-vlm \ --model_args pretrained="RedHatAI/Llama-4-Scout-17B-16E-Instruct-quantized.w4a16",dtype=auto,add_bos_token=False,max_model_len=1000000,tensor_parallel_size=8,gpu_memory_utilization=0.9,enable_chunked_prefill=True,trust_remote_code=True,max_images=10 \ --tasks mmmu_val \ --apply_chat_template \ --batch_size auto INLINECODE15zA50D9943 export VLLM_MM_INPUT_CACHE_GIB=8 lm_eval \ --model vllm-vlm \ --model_args pretrained="RedHatAI/Llama-4-Scout-17B-16E-Instruct-quantized.w4a16",dtype=auto,add_bos_token=False,max_model_len=1000000,tensor_parallel_size=8,gpu_memory_utilization=0.9,enable_chunked_prefill=True,trust_remote_code=True,max_images=10 \ --tasks chartqa \ --apply_chat_template \ --batch_size auto ``

</details>

Accuracy

Recovery (%)meta-llama/Llama-4-Scout-17B-16E-InstructRedHatAI/Llama-4-Scout-17B-16E-Instruct-quantized.w4a16<br>(this model)
ARC-Challenge<br>25-shot98.5169.3768.34
GSM8k<br>5-shot100.490.4590.90
HellaSwag<br>10-shot99.6785.2384.95
MMLU<br>5-shot99.7580.5480.34
TruthfulQA<br>0-shot99.8261.4161.30
WinoGrande<br>5-shot98.9877.9077.11
OpenLLM v1<br>Average Score99.5977.4877.16
IFEval<br>0-shot<br>avg of inst and prompt acc99.5186.9086.47
Big Bench Hard<br>3-shot99.4665.1364.78
Math Lvl 5<br>4-shot99.2257.7857.33
GPQA<br>0-shot100.031.8831.88
MuSR<br>0-shot100.942.2042.59
MMLU-Pro<br>5-shot98.6755.7054.96
OpenLLM v2<br>Average Score99.5456.6056.34
MMMU<br>0-shot100.653.4453.78
ChartQA<br>0-shot<br>exactmatch100.165.8866.00
ChartQA<br>0-shot<br>relaxedaccuracy99.5588.9288.52
Multimodal Average Score100.069.4169.43
RULER<br>seqlen = 131072<br>niahmultikey198.4188.2086.80
RULER<br>seqlen = 131072<br>niahmultikey294.7383.6079.20
RULER<br>seqlen = 131072<br>niahmultikey396.4478.8076.00
RULER<br>seqlen = 131072<br>niahmultiquery98.7995.4094.25
RULER<br>seqlen = 131072<br>niahmultivalue101.673.7574.95
RULER<br>seqlen = 131072<br>niahsingle1100.0100.00100.0
RULER<br>seqlen = 131072<br>niahsingle2100.099.8099.80
RULER<br>seqlen = 131072<br>niahsingle3100.299.80100.0
RULER<br>seqlen = 131072<br>rulercwe87.3939.4233.14
RULER<br>seqlen = 131072<br>rulerfwe98.1392.9391.20
RULER<br>seqlen = 131072<br>rulerqahotpot100.448.2048.40
RULER<br>seqlen = 131072<br>rulerqasquad96.2253.5751.55
RULER<br>seqlen = 131072<br>rulerqavt98.8292.2891.20
RULER<br>seqlen = 131072<br>Average Score98.1680.4478.96

Specifications

Parameters 22.2B
Context Length 10485K
Architecture llama4
License Unknown

Tags

chat