Text Generation
Transformers
Safetensors
qwen2
deepseek
int4
vllm
llmcompressor
conversational
text-generation-inference
compressed-tensors
Instructions to use RedHatAI/DeepSeek-R1-Distill-Qwen-7B-quantized.w4a16 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use RedHatAI/DeepSeek-R1-Distill-Qwen-7B-quantized.w4a16 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="RedHatAI/DeepSeek-R1-Distill-Qwen-7B-quantized.w4a16") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("RedHatAI/DeepSeek-R1-Distill-Qwen-7B-quantized.w4a16") model = AutoModelForCausalLM.from_pretrained("RedHatAI/DeepSeek-R1-Distill-Qwen-7B-quantized.w4a16") messages = [ {"role": "user", "content": "Who are you?"}, ] inputs = tokenizer.apply_chat_template( messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt", ).to(model.device) outputs = model.generate(**inputs, max_new_tokens=40) print(tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps
- vLLM
How to use RedHatAI/DeepSeek-R1-Distill-Qwen-7B-quantized.w4a16 with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "RedHatAI/DeepSeek-R1-Distill-Qwen-7B-quantized.w4a16" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "RedHatAI/DeepSeek-R1-Distill-Qwen-7B-quantized.w4a16", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/RedHatAI/DeepSeek-R1-Distill-Qwen-7B-quantized.w4a16
- SGLang
How to use RedHatAI/DeepSeek-R1-Distill-Qwen-7B-quantized.w4a16 with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "RedHatAI/DeepSeek-R1-Distill-Qwen-7B-quantized.w4a16" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "RedHatAI/DeepSeek-R1-Distill-Qwen-7B-quantized.w4a16", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "RedHatAI/DeepSeek-R1-Distill-Qwen-7B-quantized.w4a16" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "RedHatAI/DeepSeek-R1-Distill-Qwen-7B-quantized.w4a16", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use RedHatAI/DeepSeek-R1-Distill-Qwen-7B-quantized.w4a16 with Docker Model Runner:
docker model run hf.co/RedHatAI/DeepSeek-R1-Distill-Qwen-7B-quantized.w4a16
| { | |
| "_name_or_path": "deepseek-ai/DeepSeek-R1-Distill-Qwen-7B", | |
| "architectures": [ | |
| "Qwen2ForCausalLM" | |
| ], | |
| "attention_dropout": 0.0, | |
| "bos_token_id": 151643, | |
| "eos_token_id": 151643, | |
| "hidden_act": "silu", | |
| "hidden_size": 3584, | |
| "initializer_range": 0.02, | |
| "intermediate_size": 18944, | |
| "max_position_embeddings": 131072, | |
| "max_window_layers": 28, | |
| "model_type": "qwen2", | |
| "num_attention_heads": 28, | |
| "num_hidden_layers": 28, | |
| "num_key_value_heads": 4, | |
| "quantization_config": { | |
| "config_groups": { | |
| "group_0": { | |
| "input_activations": null, | |
| "output_activations": null, | |
| "targets": [ | |
| "Linear" | |
| ], | |
| "weights": { | |
| "actorder": "weight", | |
| "block_structure": null, | |
| "dynamic": false, | |
| "group_size": 128, | |
| "num_bits": 4, | |
| "observer": "mse", | |
| "observer_kwargs": {}, | |
| "strategy": "group", | |
| "symmetric": true, | |
| "type": "int" | |
| } | |
| } | |
| }, | |
| "format": "pack-quantized", | |
| "global_compression_ratio": 2.070538700752354, | |
| "ignore": [ | |
| "lm_head" | |
| ], | |
| "kv_cache_scheme": null, | |
| "quant_method": "compressed-tensors", | |
| "quantization_status": "compressed", | |
| "sparsity_config": { | |
| "format": "dense", | |
| "global_sparsity": 0.13432298565034687, | |
| "ignore": [ | |
| "model.layers.0.self_attn.q_proj", | |
| "model.layers.0.self_attn.k_proj", | |
| "model.layers.0.self_attn.v_proj", | |
| "model.layers.0.self_attn.o_proj", | |
| "model.layers.0.mlp.gate_proj", | |
| "model.layers.0.mlp.up_proj", | |
| "model.layers.0.mlp.down_proj", | |
| "model.layers.1.self_attn.q_proj", | |
| "model.layers.1.self_attn.k_proj", | |
| "model.layers.1.self_attn.v_proj", | |
| "model.layers.1.self_attn.o_proj", | |
| "model.layers.1.mlp.gate_proj", | |
| "model.layers.1.mlp.up_proj", | |
| "model.layers.2.self_attn.q_proj", | |
| "model.layers.2.self_attn.k_proj", | |
| "model.layers.2.self_attn.v_proj", | |
| "model.layers.2.self_attn.o_proj", | |
| "model.layers.2.mlp.gate_proj", | |
| "model.layers.2.mlp.up_proj", | |
| "model.layers.2.mlp.down_proj", | |
| "model.layers.3.self_attn.q_proj", | |
| "model.layers.3.self_attn.k_proj", | |
| "model.layers.3.self_attn.v_proj", | |
| "model.layers.3.self_attn.o_proj", | |
| "model.layers.3.mlp.gate_proj", | |
| "model.layers.3.mlp.up_proj", | |
| "model.layers.3.mlp.down_proj", | |
| "model.layers.4.self_attn.q_proj", | |
| "model.layers.4.self_attn.k_proj", | |
| "model.layers.4.self_attn.v_proj", | |
| "model.layers.4.self_attn.o_proj", | |
| "model.layers.4.mlp.gate_proj", | |
| "model.layers.4.mlp.up_proj", | |
| "model.layers.4.mlp.down_proj", | |
| "model.layers.5.self_attn.q_proj", | |
| "model.layers.5.self_attn.k_proj", | |
| "model.layers.5.self_attn.v_proj", | |
| "model.layers.5.self_attn.o_proj", | |
| "model.layers.5.mlp.gate_proj", | |
| "model.layers.5.mlp.up_proj", | |
| "model.layers.5.mlp.down_proj", | |
| "model.layers.6.self_attn.q_proj", | |
| "model.layers.6.self_attn.k_proj", | |
| "model.layers.6.self_attn.v_proj", | |
| "model.layers.6.self_attn.o_proj", | |
| "model.layers.6.mlp.gate_proj", | |
| "model.layers.6.mlp.up_proj", | |
| "model.layers.6.mlp.down_proj", | |
| "model.layers.7.self_attn.q_proj", | |
| "model.layers.7.self_attn.k_proj", | |
| "model.layers.7.self_attn.v_proj", | |
| "model.layers.7.self_attn.o_proj", | |
| "model.layers.7.mlp.gate_proj", | |
| "model.layers.7.mlp.up_proj", | |
| "model.layers.7.mlp.down_proj", | |
| "model.layers.8.self_attn.q_proj", | |
| "model.layers.8.self_attn.k_proj", | |
| "model.layers.8.self_attn.v_proj", | |
| "model.layers.8.self_attn.o_proj", | |
| "model.layers.8.mlp.gate_proj", | |
| "model.layers.8.mlp.up_proj", | |
| "model.layers.8.mlp.down_proj", | |
| "model.layers.9.self_attn.q_proj", | |
| "model.layers.9.self_attn.k_proj", | |
| "model.layers.9.self_attn.v_proj", | |
| "model.layers.9.self_attn.o_proj", | |
| "model.layers.9.mlp.gate_proj", | |
| "model.layers.9.mlp.up_proj", | |
| "model.layers.9.mlp.down_proj", | |
| "model.layers.10.self_attn.q_proj", | |
| "model.layers.10.self_attn.k_proj", | |
| "model.layers.10.self_attn.v_proj", | |
| "model.layers.10.self_attn.o_proj", | |
| "model.layers.10.mlp.gate_proj", | |
| "model.layers.10.mlp.up_proj", | |
| "model.layers.10.mlp.down_proj", | |
| "model.layers.11.self_attn.q_proj", | |
| "model.layers.11.self_attn.k_proj", | |
| "model.layers.11.self_attn.v_proj", | |
| "model.layers.11.self_attn.o_proj", | |
| "model.layers.11.mlp.gate_proj", | |
| "model.layers.11.mlp.up_proj", | |
| "model.layers.11.mlp.down_proj", | |
| "model.layers.12.self_attn.q_proj", | |
| "model.layers.12.self_attn.k_proj", | |
| "model.layers.12.self_attn.v_proj", | |
| "model.layers.12.self_attn.o_proj", | |
| "model.layers.12.mlp.gate_proj", | |
| "model.layers.12.mlp.up_proj", | |
| "model.layers.12.mlp.down_proj", | |
| "model.layers.13.self_attn.q_proj", | |
| "model.layers.13.self_attn.k_proj", | |
| "model.layers.13.self_attn.v_proj", | |
| "model.layers.13.self_attn.o_proj", | |
| "model.layers.13.mlp.gate_proj", | |
| "model.layers.13.mlp.up_proj", | |
| "model.layers.13.mlp.down_proj", | |
| "model.layers.14.self_attn.q_proj", | |
| "model.layers.14.self_attn.k_proj", | |
| "model.layers.14.self_attn.v_proj", | |
| "model.layers.14.self_attn.o_proj", | |
| "model.layers.14.mlp.gate_proj", | |
| "model.layers.14.mlp.up_proj", | |
| "model.layers.14.mlp.down_proj", | |
| "model.layers.15.self_attn.q_proj", | |
| "model.layers.15.self_attn.k_proj", | |
| "model.layers.15.self_attn.v_proj", | |
| "model.layers.15.self_attn.o_proj", | |
| "model.layers.15.mlp.gate_proj", | |
| "model.layers.15.mlp.up_proj", | |
| "model.layers.15.mlp.down_proj", | |
| "model.layers.16.self_attn.q_proj", | |
| "model.layers.16.self_attn.k_proj", | |
| "model.layers.16.self_attn.v_proj", | |
| "model.layers.16.self_attn.o_proj", | |
| "model.layers.16.mlp.gate_proj", | |
| "model.layers.16.mlp.up_proj", | |
| "model.layers.16.mlp.down_proj", | |
| "model.layers.17.self_attn.q_proj", | |
| "model.layers.17.self_attn.k_proj", | |
| "model.layers.17.self_attn.v_proj", | |
| "model.layers.17.self_attn.o_proj", | |
| "model.layers.17.mlp.gate_proj", | |
| "model.layers.17.mlp.up_proj", | |
| "model.layers.17.mlp.down_proj", | |
| "model.layers.18.self_attn.q_proj", | |
| "model.layers.18.self_attn.k_proj", | |
| "model.layers.18.self_attn.v_proj", | |
| "model.layers.18.self_attn.o_proj", | |
| "model.layers.18.mlp.gate_proj", | |
| "model.layers.18.mlp.up_proj", | |
| "model.layers.18.mlp.down_proj", | |
| "model.layers.19.self_attn.q_proj", | |
| "model.layers.19.self_attn.k_proj", | |
| "model.layers.19.self_attn.v_proj", | |
| "model.layers.19.self_attn.o_proj", | |
| "model.layers.19.mlp.gate_proj", | |
| "model.layers.19.mlp.up_proj", | |
| "model.layers.19.mlp.down_proj", | |
| "model.layers.20.self_attn.q_proj", | |
| "model.layers.20.self_attn.k_proj", | |
| "model.layers.20.self_attn.v_proj", | |
| "model.layers.20.self_attn.o_proj", | |
| "model.layers.20.mlp.gate_proj", | |
| "model.layers.20.mlp.up_proj", | |
| "model.layers.20.mlp.down_proj", | |
| "model.layers.21.self_attn.q_proj", | |
| "model.layers.21.self_attn.k_proj", | |
| "model.layers.21.self_attn.v_proj", | |
| "model.layers.21.self_attn.o_proj", | |
| "model.layers.21.mlp.gate_proj", | |
| "model.layers.21.mlp.up_proj", | |
| "model.layers.21.mlp.down_proj", | |
| "model.layers.22.self_attn.q_proj", | |
| "model.layers.22.self_attn.k_proj", | |
| "model.layers.22.self_attn.v_proj", | |
| "model.layers.22.self_attn.o_proj", | |
| "model.layers.22.mlp.gate_proj", | |
| "model.layers.22.mlp.up_proj", | |
| "model.layers.22.mlp.down_proj", | |
| "model.layers.23.self_attn.q_proj", | |
| "model.layers.23.self_attn.k_proj", | |
| "model.layers.23.self_attn.v_proj", | |
| "model.layers.23.self_attn.o_proj", | |
| "model.layers.23.mlp.gate_proj", | |
| "model.layers.23.mlp.up_proj", | |
| "model.layers.23.mlp.down_proj", | |
| "model.layers.24.self_attn.q_proj", | |
| "model.layers.24.self_attn.k_proj", | |
| "model.layers.24.self_attn.v_proj", | |
| "model.layers.24.self_attn.o_proj", | |
| "model.layers.24.mlp.gate_proj", | |
| "model.layers.24.mlp.up_proj", | |
| "model.layers.24.mlp.down_proj", | |
| "model.layers.25.self_attn.q_proj", | |
| "model.layers.25.self_attn.k_proj", | |
| "model.layers.25.self_attn.v_proj", | |
| "model.layers.25.self_attn.o_proj", | |
| "model.layers.25.mlp.gate_proj", | |
| "model.layers.25.mlp.up_proj", | |
| "model.layers.25.mlp.down_proj", | |
| "model.layers.26.self_attn.q_proj", | |
| "model.layers.26.self_attn.k_proj", | |
| "model.layers.26.self_attn.v_proj", | |
| "model.layers.26.self_attn.o_proj", | |
| "model.layers.26.mlp.gate_proj", | |
| "model.layers.26.mlp.up_proj", | |
| "model.layers.26.mlp.down_proj", | |
| "model.layers.27.self_attn.q_proj", | |
| "model.layers.27.self_attn.k_proj", | |
| "model.layers.27.self_attn.v_proj", | |
| "model.layers.27.self_attn.o_proj", | |
| "model.layers.27.mlp.gate_proj", | |
| "model.layers.27.mlp.up_proj", | |
| "model.layers.27.mlp.down_proj", | |
| "lm_head" | |
| ], | |
| "registry_requires_subclass": false, | |
| "sparsity_structure": "unstructured", | |
| "targets": [ | |
| "model.layers.1.mlp.down_proj" | |
| ] | |
| } | |
| }, | |
| "rms_norm_eps": 1e-06, | |
| "rope_scaling": null, | |
| "rope_theta": 10000, | |
| "sliding_window": null, | |
| "tie_word_embeddings": false, | |
| "torch_dtype": "bfloat16", | |
| "transformers_version": "4.48.0", | |
| "use_cache": true, | |
| "use_mrope": false, | |
| "use_sliding_window": false, | |
| "vocab_size": 152064 | |
| } |